Java/Spring Boot(65)
-
Spring Boot에서 html과 jsp 중 어느 것이 더 먼저 인식이 될까?
/static/index.html /WEB-INF/jsp/index.jsp 위 2개가 셋팅된 상태에서 localhost:8080으로 호출하면, index.html이 호출됨
2021.03.10 -
Spring Boot War를 local Tomcat 서버에 이관
SpringBootServletInitializer를 상속받도록 처리 SpringApplicationBuilder를 override package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.Reques..
2021.03.08 -
Spring Boot Static 파일 등록
src/main/resources아래에 static 폴더 생성하고 파일 등록
2021.03.06 -
Spring Boot Project JRE 변경
해당 프로젝트에서 오른쪽 버튼 > Properties > Project Facets 선택 Java에서 원하는 Version 선택
2021.03.06 -
Spring Boot JSP 한글 깨짐 조치
html의 메타태그는 의미 없음 환경설정을 통해 해결할 수 있는 방법 찾아야 함 aslkfdal 한글 aaaaa
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