Can you do the following in the interceptURL?
orCode:<intercept-url pattern="http://localhost:8080/MySite/Login/login.cfm" access="permitAll" />
If not, is there a way to get spring security to use the full site instead of the "relative" path? I'm trying to pull multiple apps together under one domain and want to share a security config between them. Any suggestions or examples?Code:<intercept-url pattern="http://localhost:8080/**" access="hasRole('GRP_USER')" />
I found FilterSecurityInterceptor but was looking for some advice on how to implement it.


Reply With Quote