Java/Spring Boot(69)
-
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 -
String boot JSP 셋팅
WEB-INF가 중요함 WEB-INF를 디렉토리에 넣으면, jsp를 그냥 인식할 수 없음(레거시 이전시 문제) 아래 디렉토리 생성 프로젝트/src/main/webapp/WEB-INF/jsp [pox.xml] org.apache.tomcat.embed tomcat-embed-jasper javax.servlet jstl [application.properties] server.port=8081 spring.mvc.view.prefix: /WEB-INF/jsp/ spring.mvc.view.suffix: .jsp JSP 파일 생성 프로젝트/src/main/webapp/WEB-INF/jsp/test.jsp 프로젝트/src/main/webapp/WEB-INF/jsp/abcd/test.jsp http://loca..
2021.01.14 -
The requested profile "pom.xml" could not be activated because it does not exist.
Run as > Maven install 수행시 경고 발생 Project Explorer View>해당 프로젝트>Maven Dependencies>Properties로 이동 Properties for Maven Dependencies 창에서 Maven Project settings 클릭 Active Maven Profiles(comma separated)에서 'pom.xml' 삭제
2021.01.13