如何将Spring应用程序部署到生产服务器?

时间:2013-11-15 02:20:12

标签: java spring spring-mvc spring-boot

我有一个在Eclipse中构建的Spring MVC应用程序,我试图将其部署为战争(对于glassfish)。我有一个类似于这样的Application类:

package com.jp5.rest;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.stereotype.Service;

@Service
@ComponentScan
@EnableAutoConfiguration
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

    public static void init() {
        SpringApplication.run(Application.class);
    }

}

修改 我越来越近了。 war文件现在部署。但是,我无法访问任何Web服务端点(它们都返回404) 现在,我有一个web.xml:

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/application-context.xml</param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
</web-app>

这样的application-context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">  

    <bean id="application" class="com.jp5.rest.Application"
        init-method="init" >
        </bean>


    <context:component-scan base-package="com.jp5.rest"/>       
</beans>

控制器看起来像这样:

package com.jp5.rest;
@ComponentScan
@EnableAutoConfiguration
@Controller
@RequestMapping("/jp5/rest/message")
public class MessageRestService
{
   @RequestMapping(method=RequestMethod.PUT, value="/test")
   public @ResponseBody testResult test()
   {
       return new testResult(true, "test");
   }
}

编辑2 谢谢你的指点。这里的解决方案:http://spring.io/guides/gs/convert-jar-to-war/是添加这样的类。我还没有测试过,但是,我认为这可以取代web.xml:

package com.jp5.rest;


import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.SpringBootServletInitializer;

public class Jp5RestXML extends SpringBootServletInitializer {

    @Override
    protected void configure(SpringApplicationBuilder application) {
        application.sources(Application.class);
    }

}

感谢

1 个答案:

答案 0 :(得分:2)

根据包装,我认为这是一个Web应用程序,其中main(...)方法没有意义。相反,Application应该在Spring配置中初始化。

如果需要在其他任何地方引用它,请在Spring配置中将其定义为bean:

<bean id="application" class="somepackage.Application" init-method="init"/>

否则,如果您只需要在启动时执行一些一次性初始化操作,则可以使用@Service@Component对类进行批注,并在Spring配置中包含component-scan指令如下:

<context:component-scan base-package="somepackage"/>

Spring只是一个控制反转(IoC)容器,它在Web应用程序的上下文中运行,不需要任何特殊的部署实践。只要适用的Spring库可用于Web应用程序(在Tomcat公共类加载器的路径上,或与Web应用程序捆绑在一起),就可以像任何其他J2EE Web应用程序一样进行部署。

Spring Stereotype Annotation Reference

编辑:如果这是针对REST API的,那么您使用的库应提供可以添加到web.xml的Servlet实现。

例如,如果您使用的是Restlet框架,则servlet定义将如下所示:

<servlet>
    <servlet-name>RestletServlet</servlet-name>
    <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class>
    <init-param>
        <param-name>org.restlet.application</param-name>
        <param-value>somepackage.RESTApplication</param-value>
    </init-param>
</servlet>
<servlet-mapping>
    <servlet-name>RestletServlet</servlet-name>
    <url-pattern>/api/*</url-pattern>
</servlet-mapping>

somepackage.RESTApplication实施代替org.restlet.Application