我有一个使用嵌入式Jetty实例的spring应用程序。由于我是以编程方式定义我的web.xml,因此我将添加调度程序。
DispatcherServlet dispatcherServlet = new DispatcherServlet();
dispatcherServlet.setContextClass(
AnnotationConfigWebApplicationContext.class);
ServletHolder holder = new ServletHolder(dispatcherServlet);
holder.setInitOrder(1);
ctx.addServlet(holder, "/example/*");
在码头层面,我正在定义我的春天背景。然后将initparams应用于Jetty Context。
initParams.put("contextConfigLocation",
"classpath*:resources/spring/*.xml");
...
ctx.setInitParams(initParams);
我确实在日志中看到它找到了一个用@Controller注释的控制器,所以我被引导相信spring应用程序的上下文正在正确加载。
org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping - 映射的URL路径[/ example / helloWorld]到处理程序[example.controllers.HelloWorldController]
在我的上下文中,我有以下视图解析
<!-- Resolves view names to protected .jsp resources within the /WEB-INF/views directory -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
这是我的HelloWorldController
@Controller
public class HelloWorldController {
@RequestMapping("/example/helloWorld")
public ModelAndView helloWorld() {
ModelAndView mav = new ModelAndView("helloWorld");
mav.addObject("message", "Hello World!");
return mav;
}
}
当我将浏览器指向“http://localhost:8080/example/helloWorld时,我在日志中收到以下错误。
org.springframework.web.servlet.PageNotFound - 在DispatcherServlet中找不到带有URI [/ example / helloWorld]的HTTP请求的映射,名称为'org.springframework.web.servlet.DispatcherServlet-1352529649'
我不确定我是否正确设置了码头容器,或者我是否正确地将调度员送到容器中。有点不对劲。有人有想法吗?
答案 0 :(得分:1)
问题是我们正在为Jetty配置一个与我们的JSP所在位置不同的资源库。我们并没有使用JSP。在我看到之后,我将JSP的位置移动到资源目录。这解决了这个问题。虽然这提出了一个安全问题,但那是另一个话题。