https://github.com/humbertodias/java-ee-parallel-and-concurrency
Java EE application that uses some concurrency and parallel solutions
https://github.com/humbertodias/java-ee-parallel-and-concurrency
concurrency java-ee parallel-programming
Last synced: 4 months ago
JSON representation
Java EE application that uses some concurrency and parallel solutions
- Host: GitHub
- URL: https://github.com/humbertodias/java-ee-parallel-and-concurrency
- Owner: humbertodias
- Created: 2018-04-09T08:23:52.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-21T09:09:50.000Z (about 7 years ago)
- Last Synced: 2025-03-02T02:09:04.457Z (4 months ago)
- Topics: concurrency, java-ee, parallel-programming
- Language: Java
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# java-ee-parallel-and-concurrency
Requires
* Java 9+
* Maven 3+Test
```
mvn test
```Run
```
mvn wildfly:run
```[http://localhost:8080](http://localhost:8080)
Stress Test
```
time curl -s "http://localhost:8080/EntityManagerServlet?[1-1000]"
```References
* [java-ee-concurrency-api-tutorial](https://www.javacodegeeks.com/2014/07/java-ee-concurrency-api-tutorial.html)
* [injection-of-entitymanager](http://tomee.apache.org/examples-trunk/injection-of-entitymanager/README.html)
* [javaee7-samples](github.com/javaee-samples/javaee7-samples)