I'm having trouble integrating the most basic of spring security examples into an app i've cloned off git and gotten to work ... here are the relevant files:
build.gradle
WEB-INF/web.xml
WEB-INF/spring/app-config.xml
WEB-INF/spring/mvc-config.xml
WEB-INF/spring/spring-security.xml
The error i get is:
if i simply blindly add:
I get the folloowing error:
If i remove all spring security related stuff, the app works fine. Any thoughts? Thanks in advance.
One other hting you can configure in your web.xml for the ContextLoaderListener is the location of your xml config files. with a <context-param> tag. Or you can put an applicationContext.xml file in the WEB-INF directory that imports your config files, and with that you won't need the <context-param>
I recommend looking at the Core Spring Framework documentation's Spring MVC section.