I have a specific path that i want to have oauth and for all the other paths to not. What i mean by that is I want /app/test/** to have my oAuth protected code, and the rest to not. So, I've tried to do the following in numerous amounts of ways, but to no success:
Any help would be much appreciated :)Code:<http pattern="/**" security="none" />
<http entry-point-ref="oAuthEntryPoint">
<intercept-url pattern="/app/test/**" access="IS_AUTHENTICATED_FULLY"/>
</http>
