Whitelabel Error Page
2021. 3. 6. 09:06ㆍJava/Spring Boot
'/hello'만 서비스되고 '/'에 대한 정의는 없기 때문에 발생한 에러
@GetMapping("/hello") -> @GetMapping("/") 변경하면 해결 됨
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@GetMapping("/hello")
public String hello(@RequestParam(value="name", defaultValue="World") String name) {
return String.format("Hello %s!", name);
}
}
'Java > Spring Boot' 카테고리의 다른 글
Spring Boot JSP파일 한글 타입 셋팅 (0) | 2021.03.06 |
---|---|
Spring boot Hellow World에 파라메터 넘기기 (0) | 2021.03.06 |
The import org.springframework.web cannot be resolved (0) | 2021.03.06 |
Spring Boot JDK 1.8 셋팅 (0) | 2021.03.05 |
String boot JSP 셋팅 (0) | 2021.01.14 |