我看到很多人有类似的问题,但没有答案对我有用。我正在做的是尝试将Jetty与Spring 4嵌入零配置。我在下面放了一些代码,以便更好地描述我的问题:
public class JettyStarter {
...
private static final String CONFIG_LOCATION = "com....config";
private static final String DEFAULT_MAPPING_URL = "/*";
private static final String DEFAULT_CONTEXT_PATH = "/";
...
private ServletContextHandler getServletContextHandler() throws IOException {
WebApplicationContext context = getContext();
ServletContextHandler contextHandler = new ServletContextHandler(ServletContextHandler.SESSIONS);
contextHandler.setErrorHandler(null);
DispatcherServlet dispatcherServlet = new DispatcherServlet(context);
ServletHolder servletHolder = new ServletHolder("Servlet Dispatcher", dispatcherServlet);
servletHolder.setInitOrder(1);
contextHandler.addServlet(servletHolder, DEFAULT_MAPPING_URL);
contextHandler.addEventListener(new ContextLoaderListener(context));
contextHandler.setResourceBase(new ClassPathResource("webapp").getURI().toString());
contextHandler.setContextPath(DEFAULT_CONTEXT_PATH);
return contextHandler;
}
private void startJetty() throws Exception
{
...
HandlerCollection handlers = new HandlerCollection();
handlers.addHandler(getServletContextHandler());
...
server.setHandler(handlers);
server.start();
server.join();
}
private WebApplicationContext getContext() throws IOException {
AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext();
context.setConfigLocation(CONFIG_LOCATION);
...
return context;
}
...
}
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "com...controllers")
public class WebMvcConfig extends WebMvcConfigurerAdapter{
...
@Bean
public InternalResourceViewResolver getInternalResourceViewResolver()
{
InternalResourceViewResolver internalResourceViewResolver = new InternalResourceViewResolver();
internalResourceViewResolver.setPrefix("/WEB-INF/jsp/view");
internalResourceViewResolver.setSuffix(".jsp");
internalResourceViewResolver.setViewClass(org.springframework.web.servlet.view.JstlView.class);
return internalResourceViewResolver;
}
}
@Controller
public class HomeController {
@RequestMapping(value = "/login", method = RequestMethod.GET)
public String login(@RequestParam(value="error", required=false) boolean error, ModelMap model)
{
...
return "/pub/login";
}
}
最后,在服务器启动后,在尝试访问localhost时出现以下消息时出现404错误:8080 / login
警告:在DispatcherServlet中找不到带有URI [/WEB-INF/jsp/view/pub/login.jsp]且名称为“Servlet Dispatcher”的HTTP请求的映射
我很确定资源“login.jsp”位于包中的“/ webapp / WEB-INF / jsp / view / pub”文件夹下。但为什么它一直说不能找到它?!
奇怪的限制,我无法在8小时内回答自己的问题。
通过追踪Spring的源代码,我最终得到了我的页面显示。原因是我将Jetty ServletContextHandler的ResourceBase设置为“webapp”,并在其下创建“WEB-INF”子文件夹,所有资源也在“WEB-INF / jsp / view / ...”下。但是ResourceHttpRequestHandler无法访问文件夹WEB-INF,因为我们可以在那里看到代码:
protected boolean isInvalidPath(String path) {
return (path.contains("WEB-INF") || path.contains("META-INF") || StringUtils.cleanPath(path).startsWith(".."));
}
因此,解决方案是将资源库更改为“webapp / WEB-INF”,并将InternalResourceViewResolver前缀更改为“/ jsp / view”。它确实有效!
现在我的问题是,ResourceHttpRequestHandler被用于限制直接资源访问,servlet不应该使用它,为什么我的none-config版本加载它?但不适用于XML-config版本?使用任何其他处理程序的XML配置通过此限制或我缺少的东西?感谢任何人前进。
答案 0 :(得分:0)
你需要告诉Spring你已经注释了你的bean。这通常是在一个说明注释驱动的XML中完成的。但是我相信你必须在你的@Configuration元素上使用@AnnotationDrivenConfig
alon,这样你的bean才能自动装配。
编辑:正如OP提到的那样@AnnotationDrivenConfig已被弃用。 你能试试https://stackoverflow.com/a/8076045/2231632吗?