gpt4 book ai didi

java - spring WebApplicationInitializer 配置多个servlet

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:45 26 4
gpt4 key购买 nike

我需要配置 2 个 servlet:一个用于常规 http 请求,另一个是用于 Java web-socket 的 Atmosphere servlet。

这是我的 WebApplicationInitializer 的代码:

public class AppInitializer implements WebApplicationInitializer
{
private static final String CONFIG_LOCATION = "com.mysite.myapp.presentation.config";
private static final String MAPPING_URL = "/*";
private static final String STREAM_URL = "/stream/*";

private int servletInx = 1;
private ServletContext servletContext;

@Override
public void onStartup(ServletContext servletContext) throws ServletException
{
this.servletContext = servletContext;
WebApplicationContext context = getContext();
servletContext.addListener(new ContextLoaderListener(context));
registerServlet("DispatcherServlet", new DispatcherServlet(context), MAPPING_URL);
registerServlet("AtmosphereServlet", new AtmosphereServlet(), STREAM_URL);
}

private AnnotationConfigWebApplicationContext getContext()
{
AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext();
context.setConfigLocation(CONFIG_LOCATION);
return context;
}

private void registerServlet(String servletName, Servlet servletClass, String mappingUrl)
{
ServletRegistration.Dynamic dispatcher =
servletContext.addServlet(servletName, servletClass);

if (dispatcher != null)
{
System.out.println("servletInx: " + servletInx);
dispatcher.setLoadOnStartup(servletInx++);
dispatcher.addMapping(mappingUrl);
}
}
}

运行应用程序时,http 部分工作正常;但是,没有提供静态文件。甚至 webapps/myapp (localhost:8080/myapp/index.html) 的 index.html 也返回 404

当 Controller 返回相同的 html通过/@RequestMapping(value = "/welcome", method = RequestMethod.GET),它有效,但 html 中指定的任何 javascript 或 css 返回 404

任何帮助将不胜感激

最佳答案

抱歉,它与 WebApplicationInitializer 无关。它与 WebMvcConfigurerAdapter 有关。它缺少启用配置器的 configureDefaultServletHandling 方法。这反过来又使应用程序能够提供静态内容。

很抱歉让你抓耳挠腮 ;-)

关于java - spring WebApplicationInitializer 配置多个servlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54102420/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com