spring boot(51)
-
Spring Boot Project JRE 변경
해당 프로젝트에서 오른쪽 버튼 > Properties > Project Facets 선택 Java에서 원하는 Version 선택
2021.03.06 -
Spring Boot JSP 동적 적용 가능
pox.xml에 아래 내용 추가 org.springframework.boot spring-boot-devtools application.properties에 아래 내용 추가 #서비스 포트 셋팅 server.port=8081 spring.mvc.view.prefix: /WEB-INF/jsp/# jsp 셋팅 spring.mvc.view.suffix: .jsp# jsp 셋팅 # jsp 동적 적용 가능 spring.devtools.livereload.enabled=true 실제로 pom.xml만 적용해도 잘 작동함
2021.03.06 -
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 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