Я уже некоторое время использую Spring Boot, но хочу создать новое приложение, начиная с простой службы REST. Независимо от того, что я пытаюсь сделать, мой сервис продолжает возвращать ошибку 404, и я не могу понять, почему. Я обнаружил некоторые похожие проблемы со звуком на net, но они почти всегда go говорят о том, что класс Controller не находится в правильном пакете, но здесь это НЕ. Чтобы исключить проблемы с портом, я изменил его с 8080-> 8901 (и несколько других), но безрезультатно. Я также попробовал @ComponentScan, который не сработал. Вот файлы:
Класс приложения:
package nl.haba.demo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
Класс контроллера:
package nl.haba.demo.controller;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
@RestController
public class GreetingService {
@GetMapping("/greet")
public ResponseEntity<String> greetPerson() {
return ResponseEntity.ok().body("Hello, World");
}
}
Application.yml
server:
port: 8901
пом. 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>nl.haba</groupId>
<artifactId>mydemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>mydemo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jersey</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Журнал запуска Spring:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.3.1.RELEASE)
2020-06-17 11:15:06.650 INFO 11251 --- [ main] n.h.demo.DemoApplication : Starting DemoApplication on XXXXXXXXXXXXX with PID 11251 (/Users/xxxxxxxxxx/Projects/mydemo/target/classes started by xxxxxxxxxx in /Users/xxxxxxxxxx/Projects/mydemo)
2020-06-17 11:15:06.653 INFO 11251 --- [ main] n.h.demo.DemoApplication : No active profile set, falling back to default profiles: default
2020-06-17 11:15:07.357 INFO 11251 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8901 (http)
2020-06-17 11:15:07.365 INFO 11251 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2020-06-17 11:15:07.366 INFO 11251 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.36]
2020-06-17 11:15:07.442 INFO 11251 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2020-06-17 11:15:07.442 INFO 11251 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 748 ms
2020-06-17 11:15:07.586 INFO 11251 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8901 (http) with context path ''
2020-06-17 11:15:07.598 INFO 11251 --- [ main] n.h.demo.DemoApplication : Started DemoApplication in 1.282 seconds (JVM running for 1.921)
Когда я использую Postman для получения результата на
GET http://localhost:8901/greet
, он всегда возвращает 404, и я не могу понять почему. Curl тоже не работал. Может ли кто-нибудь помочь мне и сказать, чего мне здесь не хватает?