Not able to import org.springframework.security classes in Eclipse -


i have installed spring , spring security extension (latest version 3.6.4.201503051146) in eclipse luna still unable access security package. when write "org.springframework." cannot see "security". trying few examples regarding jaas security , jaasauthenticationtoken.

it weird there aren't many examples on internet regarding jaasauthenticationtoken. deprecated or have hole security?

i have maven installed.

thanks

oh got it. had go pom.xml , add following code:

dependency>         <groupid>org.springframework.security</groupid>         <artifactid>spring-security-web</artifactid>         <version>4.0.0.release</version> </dependency> 

it can found here : http://projects.spring.io/spring-security/

i can see org.springframework.security.authentication.jaas.jaasauthenticationtoken

i thank myself ^^ .


Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -