无法使用 Spring Boot App 访问 RESTful 服务

Posted

技术标签:

【中文标题】无法使用 Spring Boot App 访问 RESTful 服务【英文标题】:Failing to reach RESTful service with Spring Boot App 【发布时间】:2018-12-12 14:40:30 【问题描述】:

我试图在 Wildfly 13.0.0 上运行一个简单的 Spring Boot 应用程序,但在尝试访问任何 REST url 时总是出现 404 错误。

这是我的应用类:

package com.application.example;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;


@SpringBootApplication
public class ExampleApp extends SpringBootServletInitializer

    public static void main(String[] args) throws Exception
        SpringApplication.run(ExampleApp.class, args);
    

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) 
        return application.sources(applicationClass);
    

    private static Class<ExampleApp> applicationClass = ExampleApp.class;




@RestController
class HelloController 

    @RequestMapping("/hello/name")
    String hello(@PathVariable String name) 

        return "Hi " + name + " !";

    

这是我的 pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.application</groupId>
    <artifactId>example</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>

    <name>example</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax</groupId>
            <artifactId>javaee-api</artifactId>
            <version>8.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-test</artifactId>
            <scope>test</scope>
        </dependency>

    </dependencies>

    <build>
        <finalName>application-example</finalName>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

.war 已正确部署,如果我转到 localhost:8080/application-example/index.html,我可以访问我创建的 html 索引页面,但如果我尝试 localhost:8080/application-example/hello 或 localhost:8080/application-example/hello/myName 甚至是原始名称,最后带有 0.0.1 Snapshot我总是得到 404。

当然,内部包中的 RestController 类也会发生这种情况,但在上面的示例中,我们在同一个包中,所以我认为这不是可见性/扫描问题。

这是我要求的 application.properties:

spring.jpa.hibernate.ddl-auto=create-drop
spring.jpa.properties.hibernate.globally_quoted_identifiers=true

spring.datasource.url=jdbc:mysql://localhost:3306/example
spring.datasource.username=root@localhost
spring.datasource.password=root
spring.datasource.driverClassName=com.mysql.jdbc.Driver

server.servlet.contextPath=/application-example

我错过了什么吗?如果您需要更多详细信息,请询问。

【问题讨论】:

您的请求映射建议/hello/name,所以您只是尝试向/hello 发送请求吗?你也有到/hello 的映射吗?如果没有,请尝试localhost:8080/application-example/hello/myName 嘿@IvoVidovic,是的,我也试过那个,很抱歉没有在我的原始问题中指定它。没用。 请也发布您的应用程序属性文件。我只是想知道您是否正确设置了服务器上下文路径。 部署战争时Wildfly的服务器日志中是否有任何错误? 我在 github 上为 spring-boot with wildfly 找到了这个项目。检查你是否能够运行这个?如果是,那么你有一些东西可以比较。否则我稍后会在我的系统上安装 Wildfly(如果你可以提供你的版本#),如果你可以在 github 上签入你的代码。我会尝试在我的机器上运行它。 【参考方案1】:

如Spring Docs 中所述,您在下面缺少:

一个流行的主题是许多人仍然希望生成 WAR 文件以部署在容器中。这两个插件也都支持。本质上,您必须重新配置项目以生成 WAR 文件并将嵌入式容器依赖项声明为“已提供”。这可确保相关的嵌入式容器依赖项不包含在 WAR 文件中。要构建一个既可执行又可部署到外部容器中的 war 文件,您需要将嵌入式容器依赖项标记为“已提供” ”,如下例所示:

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <scope>provided</scope>
    </dependency>

注意:您不需要排除项。 更新 按照githubspring-boot with wildfly 上的这个工作project 来比较缺少的配置。

【讨论】:

以上是关于无法使用 Spring Boot App 访问 RESTful 服务的主要内容,如果未能解决你的问题,请参考以下文章

无法使用 Spring Boot 自动配置访问 REST 控制器

使用docker-compose时无法访问docker容器内的spring-boot rest-endpoint

Spring Boot自动扫描

Heroku 无法部署 Java 11 Spring Boot App [重复]

Spring Boot2 系列教程 | 使用 Spring Data JPA 访问 Mysql

无法实现对 Spring-Boot API 的基于角色的访问