Concurrency management is one of the biggest advantages supplied by a Java EE server. You can rely on a ready environment to deal with this tricky topic.
This recipe will show you how you can set up your beans to use it!
Concurrency management is one of the biggest advantages supplied by a Java EE server. You can rely on a ready environment to deal with this tricky topic.
This recipe will show you how you can set up your beans to use it!
Just add a Java EE dependency to your project:
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>