Spring 使用 Google 应用程序引擎引导
Spring Bootstrapping with Google Application Engine
我目前正在初始化一个没有任何 web.xml 的 Web 应用程序。我正在引导 Spring AbstractAnnotationConfigDispatcherServletInitializer
如下:
public class SpringMvcInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
@Override
protected Class<?>[] getRootConfigClasses() {
return new Class[] { SpringRootConfig.class };
}
@Override
protected Class<?>[] getServletConfigClasses() {
return new Class[] { ThymeleafConfig.class };
}
@Override
protected String[] getServletMappings() {
return new String[] { "/" };
}
@Override
protected Filter[] getServletFilters() {
return new Filter[] {new EmailVerificationFilter()};
}
}
我现在正在尝试 "port" 此应用程序进入 Google App Engine。但是 GAE 需要 web.xml。有什么办法可以创建一个 web.xml 并让它指向这个初始化程序吗?
它不适用于 Google Appengine。 AbstractAnnotationConfigDispatcherServletInitializer
需要Servlet 3.0环境,但Appengine只支持2.5.
版本
因此,您必须对 servlet 和过滤器使用 web.xml
配置。但是您也可以从那里注册 Configuration
类。通过将它们传递到 DispatcherServlet
中,例如:
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
<init-param>
<param-name>contextClass</param-name>
<param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</init-param>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>SpringRootConfig</param-value>
</init-param>
</servlet>
PS 还有关于 Servlet 3.0 支持的问题 - https://code.google.com/p/googleappengine/issues/detail?id=3091
我目前正在初始化一个没有任何 web.xml 的 Web 应用程序。我正在引导 Spring AbstractAnnotationConfigDispatcherServletInitializer
如下:
public class SpringMvcInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
@Override
protected Class<?>[] getRootConfigClasses() {
return new Class[] { SpringRootConfig.class };
}
@Override
protected Class<?>[] getServletConfigClasses() {
return new Class[] { ThymeleafConfig.class };
}
@Override
protected String[] getServletMappings() {
return new String[] { "/" };
}
@Override
protected Filter[] getServletFilters() {
return new Filter[] {new EmailVerificationFilter()};
}
}
我现在正在尝试 "port" 此应用程序进入 Google App Engine。但是 GAE 需要 web.xml。有什么办法可以创建一个 web.xml 并让它指向这个初始化程序吗?
它不适用于 Google Appengine。 AbstractAnnotationConfigDispatcherServletInitializer
需要Servlet 3.0环境,但Appengine只支持2.5.
因此,您必须对 servlet 和过滤器使用 web.xml
配置。但是您也可以从那里注册 Configuration
类。通过将它们传递到 DispatcherServlet
中,例如:
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
<init-param>
<param-name>contextClass</param-name>
<param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</init-param>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>SpringRootConfig</param-value>
</init-param>
</servlet>
PS 还有关于 Servlet 3.0 支持的问题 - https://code.google.com/p/googleappengine/issues/detail?id=3091