<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
@SpringBootApplication
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
@RestController
public class MyController {
@GetMapping("/hello")
public String helloWorld() {
return "Hello, World!";
}
}
# application.properties
server.port=8080
server.servlet.context-path=/myapp