在不使用Spring Boot的情况下创建Spring Rest服务


74

我已经按照spring.io上的入门教程构建了REEST服务https://spring.io/guides/gs/rest-service/。问题在于,本教程仅说明如何使用Spring Boot生成嵌入了tomcat的独立运行jar。

有没有一种方法可以从头开始创建项目,从而产生战争,例如将其部署在已经存在的tomcat实例上?

PS:关于相同的问题,我在stackoverflow上的Tomcat中找到了先前的Spring RESTful Service作为WAR而不是JAR的线程。问题是,已接受的答案和建议不能完全解决我的问题,因为我没有在寻找修改独立应用程序spring boot项目的方法,以便它可以在外部tomcat容器上工作,但希望找到一个根本不涉及弹簧启动的“清洁”解决方案。(我不确定在这里如何表现,在stackoverflow上还是很新的。我希望打开一个新问题是正确的过程)。


1
您在弹簧靴的哪些部位发现“不干净”?知道您不喜欢哪些部分将有助于获得更好的答案。
digitaljoel 2015年

2
好吧,我谈到的“清洁”解决方案仅与不必使用某些库(在本例中为boot,但可以是其他任何东西)创建项目有关,然后必须找到一些解决方法以使代码在没有它的情况下工作。我不是指弹簧靴的某些特定部分不干净。
chrx 2015年

@digitaljoel我回应了这个问题,引导太剥离了。我熟悉maven,tomcat等-我不想部署jar,并且想要尽可能少的pom(取决于尽可能少的插件)。我发现用最新版本几乎找不到我需要的DI和MVC注释(可能还有spring数据)的几个jar。
NimChimpsky

2
Spring Boot带来了很多依赖。很多。在某些人看来,太多了。
granadaCoder

像春天启动任何新的框架最好应减少复杂..我逗乐了,为什么他们推出了额外的复杂性..
万人迷

Answers:


65

您不需要Spring Boot来创建rest控制器。

请遵循spring框架文档以了解如何设置MVC https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#spring-web

MVC的设置(DispatcherServlet取决于您的春季版本),您可以使用xml或以编程方式进行设置:https : //docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc -servlet

设置完成后,您可以将rest控制器添加到您的应用程序中。请注意,rest控制器(@RestController注释)是构造型注释,该注释组合@ResponseBody@Controller,换句话说,Controller在响应主体中返回一个对象,而不是返回视图。

这是解释我上面所说内容的完美示例:http : //www.programming-free.com/2014/01/spring-mvc-40-restful-web-services.html


4
您提供的链接似乎完全符合我在寻找的指示。很多坦克!
chrx 2015年

25
这清楚地表明了Spring的发展方向。现在都是弹簧靴子了,很难找到不使用弹簧靴子的东西。恕我直言,弹簧靴确实为魔术带来了很多...
R. van Twisk

4
@ R.vanTwisk完全同意
Koray Tugay,

3
弹簧靴应重命名为弹簧锁链
亚当

14

这是另一个示例:

目录布局:

.
├── ./pom.xml
└── ./src
    └── ./src/main
        ├── ./src/main/java
        │   └── ./src/main/java/biz
        │       └── ./src/main/java/biz/tugay
        │           └── ./src/main/java/biz/tugay/restfulspring
        │               └── ./src/main/java/biz/tugay/restfulspring/config
        │                   ├── ./src/main/java/biz/tugay/restfulspring/config/RestfulHello.java
        │                   └── ./src/main/java/biz/tugay/restfulspring/config/WebAppInitalizer.java
        └── ./src/main/webapp
            └── ./src/main/webapp/WEB-INF
                └── ./src/main/webapp/WEB-INF/web.xml

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>biz.tugay</groupId>
    <artifactId>restfulSpring</artifactId>

    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>restfulSpring Maven Webapp</name>

    <url>http://maven.apache.org</url>

    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.0.1</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>4.3.16.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>4.3.16.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>4.3.16.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>4.3.16.RELEASE</version>
        </dependency>
    </dependencies>

    <build>
        <finalName>restfulSpring</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <version>9.2.1.v20140609</version>
            </plugin>
        </plugins>
    </build>

</project>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                             http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
         version="3.0">
</web-app>

WebAppInitalizer.java

package biz.tugay.restfulspring.config;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

@Configuration
@EnableWebMvc
@ComponentScan("biz.tugay.restfulspring")
public class WebAppInitalizer extends AbstractAnnotationConfigDispatcherServletInitializer {

    @Override
    protected String[] getServletMappings() {
        return new String[]{"/*"};
    }

    @Override
    protected Class<?>[] getRootConfigClasses() {
        return new Class<?>[]{WebAppInitalizer.class};
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {
        return new Class[0];
    }
}

RestfulHello.java

package biz.tugay.restfulspring.config;

import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping(value = "/")
public class RestfulHello {

    @RequestMapping(value = "hello")
    public ResponseEntity<String> sayHello() {
        final HttpHeaders httpHeaders= new HttpHeaders();
        httpHeaders.setContentType(MediaType.APPLICATION_JSON);
        return new ResponseEntity<String>("{\"msg\": \"Hello World\"}", httpHeaders, HttpStatus.OK);
    }
}

构建并运行:

mvn clean install
mvn jetty:start

测试:

> GET /hello HTTP/1.1
> Host: localhost:8080
> User-Agent: insomnia/5.15.0
> Accept: */*
< HTTP/1.1 200 OK
< Date: Fri, 27 Apr 2018 00:06:07 GMT
< Content-Type: application/json
< Content-Length: 22
< Server: Jetty(9.2.1.v20140609)

收到的内容:

{
    "msg": "Hello World"
}

您可以通过添加maven war插件来避免完全创建web.xml:<plugin> <artifactId> maven-war-plugin </ artifactId> <version> 3.1.0 </ version> </ plugin>
Dmitry Avgustis
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.