我正在努力弄清问题是什么。
我正在开发一个也有移动应用程序的Spring Web应用程序。移动应用程序需要与我们的服务器通信以刷新Web客户端。
我认为最简单的方法是使用设置了请求映射的控制器。
移动应用程序拥有自己的身份验证系统,因此访问该网址需要打开/匿名。
我已经完成了以下设置:
@Controller
public class UpdateService
{
@Autowired
private Config _appConfig;
@Autowired
private SubscriptionsHandler _subscriptionsHandler;
@RequestMapping(value = "/events/update")
@ResponseBody
public String UpdateEventList(String token) throws SQLException
{
ExternalUpdateHandler updateHandler = new ExternalUpdateHandler(_appConfig, _subscriptionsHandler);
updateHandler.MaybeUpdateBasedOn(token);
return "";
}
}
在我的安全环境中,我尝试了两种方法:
<http pattern="/events/update" security="none" />
和
<http auto-config="true" entry-point-ref="authenticationEntryPoint">
<!-- Allow access to the login page by unauthenticated users -->
<intercept-url pattern="/login.jsp" access="IS_AUTHENTICATED_ANONYMOUSLY" />
<intercept-url pattern="/events/update" access="IS_AUTHENTICATED_ANONYMOUSLY" />
<intercept-url pattern="/**" access="ROLE_USER" />
....
</http>
如果我尝试卷曲网址,它会给我一个404 Not found。
在服务器运行的日志中,我收到以下消息:
2014-06-25 17:23:40,693 [RMI TCP Connection(3)-127.0.0.1] INFO org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping - Mapped "{[/events/update],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.lang.String ...UpdateService.UpdateEventList(java.lang.String) throws java.sql.SQLException
这似乎表明请求映射正在按预期工作。
在关闭该请求的安全性之前,我获取了登录表单作为对卷曲的响应。所以这似乎表明安全关闭工作也是如此。
我有点想法!帮助将不胜感激。干杯
更新
我使用以下卷曲:
curl -i http://localhost:8100/events/update
dispatcher-servlet.xml如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
</beans>
此处还引用了调度程序servlet:
的web.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app id="compass"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>compass</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
<async-supported>true</async-supported>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<!-- Spring Security -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
<async-supported>true</async-supported>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- Default session timeout -->
<session-config>
<session-timeout>60</session-timeout>
</session-config>
</web-app>
我是一个相当新的春天,并且到目前为止还没有使用web.xml,但是那里的东西是:
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
那是什么意思?
答案 0 :(得分:1)
由于您已在/api/*
下部署了Spring Dispatcher Servlet,因此所有Spring控制器URL都将在此之下。所以在你的测试用例中只需:
http://localhost:8100/api/events/update