Java/Spring Boot(65)
-
Spring Boot 서비스 port 변경하기
application.properties 파일에서 원하는 포트 추가(없으면, 디폴트 8080) server.port = 8081 spring.mvc.view.prefix: /WEB-INF/jsp/ spring.mvc.view.suffix: .jsp
2021.03.06 -
Spring Boot JSP파일 한글 타입 셋팅
utr-8 형식으로 파일을 저장해야 함
2021.03.06 -
Spring boot Hellow World에 파라메터 넘기기
@GetMapping("/") public String hello(@RequestParam(value="name", defaultValue="World") String name) { return String.format("Hello %s!", name); }
2021.03.06 -
Whitelabel Error Page
'/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.an..
2021.03.06 -
The import org.springframework.web cannot be resolved
pom.xml파일에 아래 내용 추가 필요 org.springframework.boot spring-boot-starter-web
2021.03.06 -
Spring Boot JDK 1.8 셋팅
Window > Java > Installed JREs Add를 통하여 원하는 JDK의 bin 디렉토리 셋팅
2021.03.05