Я скачал пример проекта с http://spring -security-oauth.codehaus.org / tutorial.html и попытался внедрить его для моего trialsite
Ниже мой отправленный xml
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/oauth/authorization">oauthController</prop>
</props>
</property>
<property name="alwaysUseFullPath" value="true"/>
</bean>
<bean id="oauthController" class="mypackage.OauthController">
<property name="clientDetailsService" ref="clientDetails"/>
</bean>
Ниже приведен контекст приложения
<security:http auto-config='true' access-denied-page="/index.jsp">
<security:intercept-url pattern="/oauth/**" access="ROLE_USER" />
<security:intercept-url pattern="/**" access="IS_AUTHENTICATED_ANONYMOUSLY" />
<security:form-login authentication-failure-url="/index.jsp" default-target-url="/index.jsp" login-page="/index.jsp" />
<security:logout logout-success-url="/index.jsp" />
</security:http>
<bean id="tokenServices" class="org.springframework.security.oauth2.provider.token.InMemoryOAuth2ProviderTokenServices">
<property name="supportRefreshToken" value="true"/>
</bean>
<oauth:provider client-details-service-ref="clientDetails" token-services-ref="tokenServices" >
<oauth:verification-code user-approval-page="/oauth/authorization"/>
</oauth:provider>
<oauth:client-details-service id="clientDetails">
<oauth:client clientId="client1" authorizedGrantTypes="authorization_code"/>
</oauth:client-details-service>
После отправки запроса от клиента как
http://localhost:8080/trialsite/oauth/user/authorize?client_id=client1&redirect_uri=http%3A%2F%2Flocalhost%3A8888%2Ftonr%2Ftrialsite%2Faccess.jsp&response_type=code
я получаю ошибку 404 (ресурс не найден) в чем может быть проблема?