我正在尝试将一个int传递给我的spring控制器,从我读过的内容我应该使用@PathVariable在控制器中捕获它。但到目前为止,我所尝试过的一切都没有奏效。我刚收到一个404错误,spring甚至没有记录它失败。
这是我的控制器代码
@RequestMapping(value = "common/taskSummary/{taskId}")
public ModelAndView taskSummary(@PathVariable int taskId) {
// Get user from Spring security
User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
ModelAndView modelAndView = new ModelAndView("safeSiteHome");
modelAndView.addObject("username", user.getUsername());
return modelAndView;
}
我也尝试使用“common / taskSummary.do / {taskId}映射它,但这也不起作用。
但是没有任何路径变量和“common / taskSummary.do”的映射确实有效。
这是我的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml
/WEB-INF/spring-security.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.security.web.session.HttpSessionEventPublisher</listener-class>
</listener>
<resource-ref>
<description>ArcFlashMap DB Connection</description>
<res-ref-name>jdbc/AFM_DB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<servlet>
<servlet-name>LoadResourcesServlet</servlet-name>
<servlet-class>ie.premiumpower.services.reports.common.LoadResourcesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.json</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
发现问题所在。我的web.xml只是将“.do”网址映射到spring,所以我不得不将.do添加到@RequestMapping网址“common / taskSummary / {taskId} .do”。
或者我可以更改web.xml以将“/”映射到spring调度程序。
由于
答案 0 :(得分:2)
问题是您的调度程序映射到* .do。所以URL模式必须以.do结束才能处理。
话虽如此,common/taskSummary/{taskId}.do
会为你解决。