我正在使用Spring 3,并尝试使用注释来设置一个简单的Web应用程序来定义控制器映射。如果没有使用* .form或* .do
加注所有网址,这似乎是非常困难的由于网站的某些部分需要受密码保护,因此这些网址都在/安全之下。 web.xml中有<security-constraint>
保护该根目录下的所有内容。我想将所有Spring控制器映射到/ secure / app /。
示例网址为:
/安全/应用/的LandingPage
/安全/应用/编辑/客户/ {ID}
我将使用适当的jsp / xml /其他方法处理每个。
所以,在web.xml中我有这个:
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/secure/app/*</url-pattern>
</servlet-mapping>
在despatcher-servlet.xml中我有这个:
<context:component-scan base-package="controller" />
在Controller包中,我有一个控制器类:
package controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
@Controller
@RequestMapping("/secure/app/main")
public class HomePageController {
public HomePageController() { }
@RequestMapping(method = RequestMethod.GET)
public ModelAndView getPage(HttpServletRequest request)
{
ModelAndView mav = new ModelAndView();
mav.setViewName("main");
return mav;
}
}
在/ WEB-INF / jsp下我有一个“main.jsp”,并设置了一个合适的视图解析器来指向它。使用* .form映射调度程序时,我的工作正常,但使用上面的代码无法正常工作。
当Spring启动时,它似乎正确地映射了所有内容:
13:22:36,762 INFO main annotation.DefaultAnnotationHandlerMapping:399 - Mapped URL path [/secure/app/main] onto handler [controller.HomePageController@2a8ab08f]
我也注意到这条线看起来很可疑:
13:25:49,578 DEBUG main servlet.DispatcherServlet:443 - No HandlerMappings found in servlet 'dispatcher': using default
在运行时,任何查看/ secure / app / main的尝试都会在Tomcat中返回404错误,并输出以下日志:
13:25:53,382 DEBUG http-8080-1 servlet.DispatcherServlet:842 - DispatcherServlet with name 'dispatcher' determining Last-Modified value for [/secure/app/main]
13:25:53,383 DEBUG http-8080-1 servlet.DispatcherServlet:850 - No handler found in getLastModified
13:25:53,390 DEBUG http-8080-1 servlet.DispatcherServlet:690 - DispatcherServlet with name 'dispatcher' processing GET request for [/secure/app/main]
13:25:53,393 WARN http-8080-1 servlet.PageNotFound:962 - No mapping found for HTTP request with URI [/secure/app/main] in DispatcherServlet with name 'dispatcher'
13:25:53,393 DEBUG http-8080-1 servlet.DispatcherServlet:677 - Successfully completed request
所以...... Spring会映射一个URL,然后在一秒钟之后“忘记”该映射?发生了什么事?
感谢。
答案 0 :(得分:3)
我和你有完全相同的问题。设置'alwaysUseFullPath'的方法非常简单。我的conf文件如下:
<bean
class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"
p:order="3" > <!-- a higher value meaning greater in terms of sorting. -->
<property name="alwaysUseFullPath" value="true" />
<property name="interceptors">
<list>
<ref local="myInterceptor" />
</list>
</property>
</bean>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="alwaysUseFullPath" value="true" />
</bean>
答案 1 :(得分:2)
阿。像往常一样,在发布问题后找到答案: - )
将RequestMapping注释更改为just / main可以解决问题。关于如何指定所有这些内容的文档并不十分清楚。
答案 2 :(得分:0)
在@Configuration类中添加类似的内容:
@Bean(autowire = Autowire.BY_TYPE)
public AnnotationMethodHandlerAdapter handlerAdapter(){
final AnnotationMethodHandlerAdapter annotationMethodHandlerAdapter = new AnnotationMethodHandlerAdapter();
annotationMethodHandlerAdapter.setAlwaysUseFullPath(true);
return annotationMethodHandlerAdapter;
}