https://github.com/mcfoggy/jee-samples
some samples to demonstrate JEE features
https://github.com/mcfoggy/jee-samples
cdi conversation jaxrs jee samples servlet
Last synced: 6 months ago
JSON representation
some samples to demonstrate JEE features
- Host: GitHub
- URL: https://github.com/mcfoggy/jee-samples
- Owner: McFoggy
- License: apache-2.0
- Created: 2017-01-26T15:25:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-27T16:00:45.000Z (over 8 years ago)
- Last Synced: 2025-02-15T21:19:33.087Z (8 months ago)
- Topics: cdi, conversation, jaxrs, jee, samples, servlet
- Language: Java
- Homepage: http://oss.brouillard.fr/projects/jee-samples
- Size: 81.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JEE Samples
This project is a collection of self contained JEE project serving as examples or demo of JEE functionalities.
## Samples
### CDI
- [JAXRS & Conversation](conversation-jaxrs/README.md)
_demo usage of `javax.enterprise.context.Conversation` & `@ConversationScoped` beans inside a JAXRS application_
- [Servlet & Conversation](conversation-servlet/README.md)
_demo usage of `javax.enterprise.context.Conversation` & `@ConversationScoped` beans inside a Servlet based application_
## Build
__Integration tests on embedded server__
- `mvn clean install`
__Integration tests on remote server__
- `mvn -Premote clean install`
## Release
This project uses [jgitver-maven-plugin](https://github.com/jgitver/jgitver-maven-plugin) to handle its versioning, check [documentation](https://github.com/jgitver/jgitver-maven-plugin#jgitver-maven-plugin) for further details.
Once your are satisfied of the HEAD commit (ie you performed all your tests)
- `git tag -a -m "release X.Y.Z, additional reason" X.Y.Z`
- `mvn -Prelease -DskipTests deploy`
- `git push --follow-tags origin master`## Other JEE Samples
- by [Arun Gupta](https://github.com/arun-gupta): https://github.com/javaee-samples
- by [Olivier Cailloux](https://github.com/oliviercailloux): https://github.com/oliviercailloux/samples
- by [Apache TomEE](https://tomee.apache.org/index.html): https://tomee.apache.org/examples-trunk/