Can you do the following in the interceptURL?

Code:
<intercept-url pattern="http://localhost:8080/MySite/Login/login.cfm" access="permitAll" />
or
Code:
<intercept-url pattern="http://localhost:8080/**" access="hasRole('GRP_USER')" />
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?

I found FilterSecurityInterceptor but was looking for some advice on how to implement it.