Rather than providing its own security implementation, TomEE makes full use of the security features that are part of Tomcat. Any Catalina realm is supported or you can provide your own security module using the login.config file.

For example, to add some simple security to the moviefun application , all we would need to do is:

  1. Add some users to the tomcat-users.xml file
  2. Add the necessary @DefineRoles and @RolesAllowed annotations on MoviesImpl
  3. Add some security config to do HTTP Basic authentication to web.xml Webservice security is also looked after – username/password based security (HTTP basic, or WS-Security) uses the same Tomcat security. Certificate based security is also available.

To put it short,

See Also:

TomEE-and-JAAS