如何将简单的Spring Boot(使用Gradle构建系统)部署到Apache Tomcat(真实服务器,而不是嵌入式服务器)?

nhu*_*uvy 4 java spring spring-mvc gradle spring-boot

我遵循这个教程:http ://spring.io/guides/gs/rest-service/
这是我的项目结构: 在此输入图像描述

build.gradle

buildscript{
    repositories{
        mavenCentral()
    }
    dependencies{
        classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'

jar{
    baseName = 'gs-rest-service'
    version = '0.1.0'
}

repositories{
    mavenCentral()
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies{
    compile("org.springframework.boot:spring-boot-starter-web") 
    testCompile("junit:junit")
}
task wrapper(type: Wrapper){
    gradleVersion = '2.3'
}
Run Code Online (Sandbox Code Playgroud)



Application.java

package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {

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

}
Run Code Online (Sandbox Code Playgroud)



Greeting.java

package hello;

public class Greeting {

    private final long id;
    private final String content;

    public Greeting(long id, String content) {
        super();
        this.id = id;
        this.content = content;
    }

    public long getId() {
        return id;
    }

    public String getContent() {
        return content;
    }

}
Run Code Online (Sandbox Code Playgroud)



GreetingControler.java

package hello;

import java.util.concurrent.atomic.AtomicLong;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class GreetingController {

    private static final String template = "Hello, %s";
    private final AtomicLong counter = new AtomicLong();

    @RequestMapping("/greeting")
    public Greeting greeting(@RequestParam(value = "name", defaultValue = "World") String name) {
        return new Greeting(counter.incrementAndGet(), String.format(template, name));
    }

}
Run Code Online (Sandbox Code Playgroud)



我知道如何通过gradle bootRun命令运行Spring Boot应用程序(在Apache Tomcat嵌入式服务器上运行).但我不知道如何在真正的Apache Tomcat上运行Spring Boot应用程序(请在这一点上帮助我!)

在此输入图像描述

nhu*_*uvy 7

关注评论的manish,我从http://start.spring.io/创建源代码库

在此输入图像描述

然后我导入Eclipse for Java EE(使用Spring Tools Suite,Gradle插件),这是项目文件夹结构:

在此输入图像描述

Greeting.java

package hello;

public class Greeting {

    private final long id;
    private final String content;

    public Greeting(long id, String content) {
        this.id = id;
        this.content = content;
    }

    public long getId() {
        return id;
    }

    public String getContent() {
        return content;
    }
}
Run Code Online (Sandbox Code Playgroud)

GreetingController

package hello;

import java.util.concurrent.atomic.AtomicLong;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class GreetingController {

    private static final String template = "Hello, %s!";
    private final AtomicLong counter = new AtomicLong();

    @RequestMapping("/greeting")
    public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name) {
        return new Greeting(counter.incrementAndGet(),
                            String.format(template, name));
    }
}
Run Code Online (Sandbox Code Playgroud)

我修改了文件 GsRestServiceApplication.java

package hello;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class GsRestServiceApplication {

    public static void main(String[] args) {
        SpringApplication.run(GreetingController.class, args); // <-- modify this line.
    }
}
Run Code Online (Sandbox Code Playgroud)

我不改变档案 GsRestServiceApplication.java

package hello;

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

public class ServletInitializer extends SpringBootServletInitializer {

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(GsRestServiceApplication.class);
    }

}
Run Code Online (Sandbox Code Playgroud)

我可以在真正的Tomcat服务器上运行web应用程序: 在此输入图像描述

然后我使用浏览器或邮差查看结果:

http://localhost:8080/gs-rest-service/greeting?name=Vy
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述