{"id":15532727,"url":"https://github.com/hypery2k/jee_demo","last_synced_at":"2026-07-15T07:31:59.526Z","repository":{"id":18887720,"uuid":"22105498","full_name":"hypery2k/JEE_Demo","owner":"hypery2k","description":"Basic JEE Demo","archived":false,"fork":false,"pushed_at":"2024-05-30T05:54:06.000Z","size":144,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-25T18:46:44.154Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"koswebservices/fasttrainhousekeepingservices","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hypery2k.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-07-22T13:44:11.000Z","updated_at":"2014-07-22T14:24:06.000Z","dependencies_parsed_at":"2024-05-30T07:59:38.579Z","dependency_job_id":"9a5c3f61-3eba-48a8-a7f5-987b496729af","html_url":"https://github.com/hypery2k/JEE_Demo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hypery2k/JEE_Demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypery2k%2FJEE_Demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypery2k%2FJEE_Demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypery2k%2FJEE_Demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypery2k%2FJEE_Demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hypery2k","download_url":"https://codeload.github.com/hypery2k/JEE_Demo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypery2k%2FJEE_Demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35496718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-15T02:00:06.706Z","response_time":131,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-02T11:32:40.934Z","updated_at":"2026-07-15T07:31:59.502Z","avatar_url":"https://github.com/hypery2k.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JEE_Demo\n\n This is your project! It's a sample, deployable Maven 2 project to help you\n get your foot in the door developing with Java EE 6. This project is setup to\n allow you to create a compliant Java EE 6 application using JSF 2.0, CDI 1.0,\n EJB 3.1 and JPA 2.0) that can run on a certified application server (Complete\n or Web Profile). It includes a persistence unit and some sample persistence\n and transaction code to help you get your feet wet with database access in\n enterprise Java. \n\n## System requirements\n\n All you need to run this project is Java 5.0 (Java SDK 1.5) or greator and\n Maven 2.0.10 or greater. This application is setup to be run on a Java EE 6\n certified application server. It has been tested with GlassFish V3 and JBoss\n AS 6.0.\n\n If you want to deploy the application to a standalone Servlet Container, then\n you will need to set one up. Alternatively, you can use a Maven command to run\n the application in place on an embedded version of GlassFish.\n\n Please note that Maven 2 project needs to use the JBoss Maven repository\n because there are certain Java EE API JARs that are not yet publised to the\n Maven Central Repository (see https://jira.jboss.org/jira/browse/WELD-222)\n\n## Deploying the application\n\n To deploy the application to JBoss AS (standalone), first make sure that the\n JBOSS_HOME environment variable points to a JBoss AS 6.0 installation.\n Alternatively, you can set the location of JBoss AS using the following\n profile defintion in the .m2/settings.xml file in your home directory:\n```xml\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\n\u003csettings\n   xmlns=\"http://maven.apache.org/POM/4.0.0\"\n   xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n   xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd\"\u003e\n\n   \u003cprofiles\u003e\n      \u003cprofile\u003e\n         \u003cid\u003eenvironment\u003c/id\u003e\n         \u003cactivation\u003e\n            \u003cactiveByDefault\u003etrue\u003c/activeByDefault\u003e\n         \u003c/activation\u003e\n         \u003cproperties\u003e\n            \u003cjboss.home\u003e/path/to/jboss-as-6.0.0.M1\u003c/jboss.home\u003e\n         \u003c/properties\u003e\n      \u003c/profile\u003e\n   \u003c/profiles\u003e\n   \n\u003c/settings\u003e\n```\n You can now deploy to JBoss AS by executing the following command:\n\n  `mvn package jboss:hard-deploy`\n\n Start JBoss AS. The application will be running at the following URL:\n\n  http://localhost:8080/maven-archetype-j2ee-simple\n\n If you want to deploy to GlassFish (standalone), you first need to change\n the name of the DataSource used by the persistence unit! Open this file:\n\n  src/main/resources/META-INF/persistence.xml\n\n Change the value of \u003cjta-data-source\u003e to the following:\n  ```xml\n  \u003cjta-data-source\u003ejdbc/__default\u003c/jta-data-source\u003e\n  ```\n\n This configuration uses the built-in default Derby DataSource in GlassFish.\n Optionally, you can use an alternative DataSource of your choice.\n \n Now, execute the command:\n\n  `mvn package`\n \n You can now deploy the target/maven-archetype-j2ee-simple.war archive and launch the\n application the through GlassFish administration console.\n\n Alternatively, you can deploy the application without moving any files around\n using the embedded GlassFish application server.\n\n To run the application using embedded GlassFish, execute this command:\n\n  `mvn package embedded-glassfish:run`\n\n The application will be running at the following URL:\n \n  http://localhost:7070/maven-archetype-j2ee-simple\n\n## Importing the project into an IDE\n\n\n If you created the project using the Maven 2 archetype wizard in your IDE\n (Eclipse, NetBeans or IntelliJ IDEA), then there is nothing to do. You should\n already have an IDE project.\n Alternativly run `mvn eclipse:eclipse`\n\n If you created the project from the commandline using archetype:generate, then\n you need to bring the project into your IDE. If you are using NetBeans 6.8 or\n IntelliJ IDEA 9, then all you have to do is open the project as an existing\n project. Both of these IDEs recognize Maven 2 projects natively.\n\n To import into Eclipse, you first need to install the m2eclipse plugin. To get\n started, add the m2eclipse update site (http://m2eclipse.sonatype.org/update/)\n to Eclipse and install the m2eclipse plugin and required dependencies. Once\n that is installed, you'll be ready to import the project into Eclipse.\n\n Select File \u003e Import... and select \"Import... \u003e Maven Projects\" and select\n your project directory. m2eclipse should take it from there.\n\n Once in the IDE, you can execute the Maven commands through the IDE controls\n to run the application on an embedded Servlet Container.\n\n## Resources\n\n\n Weld archetypes:\n* Quickstart:        http://seamframework.org/Documentation/WeldQuickstartForMavenUsers\n* Issue tracker:     https://jira.jboss.org/jira/browse/WELDX\n* Source code:       http://anonsvn.jboss.org/repos/weld/archetypes\n* Forums:            http://seamframework.org/Community/WeldUsers\n* JSR-299 overview:     http://seamframework.org/Weld\n* JSF community site:   http://www.javaserverfaces.org\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypery2k%2Fjee_demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhypery2k%2Fjee_demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypery2k%2Fjee_demo/lists"}