Nikša Baldun
Nikša Baldun

Reputation: 1894

Implementing authentication in WildFly8

I have a working WildFly8 application and I would like to implement some kind of HTTP authentication (I am relatively new to Java EE). It can be the most basic type of authentication and it should use a database as back-end. All the tutorials I could find are ancient (from JBOSS 3 era) and probably not applicable to WildFly. Does anyone have some pointers to get me started?

Upvotes: 0

Views: 185

Answers (1)

Szymon Jednac
Szymon Jednac

Reputation: 3007

These projects should get you started in the right direction:

  1. Servlet Security
  2. EJB Security

Upvotes: 1

Related Questions