spring boot 결합 jsp 사례 상세 설명

이 글 은 주로 spring boot 가 jsp 사례 와 결합 하여 상세 하 게 설명 하 였 으 며,글 에서 예시 코드 를 통 해 매우 상세 하 게 소개 하 였 으 며,여러분 의 학습 이나 업무 에 대해 어느 정도 참고 학습 가 치 를 가지 고 있 으 며,필요 한 친 구 는 참고 할 수 있 습 니 다.
도입 의존

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<!-- jstl   JSP    ,    JSP         。 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>

<!-- tomcat-embed-jasper      JSP      。 -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
application.properties 에서 전단 위치 와 접 두 사 를 설정 합 니 다.
여기에 구멍 이 있 습 니 다.pom 이 spring-boot-starter-thymeleaf 를 도입 하면 제거 해 야 합 니 다.보 기 를 되 돌 릴 때 충돌 할 수 있 습 니 다.
ui 는 WEB-INF 에서 만 든 jsp 파일 에 저 장 된 폴 더 이름 입 니 다.

#          
spring.mvc.view.prefix:/WEB-INF/ui/
#          
spring.mvc.view.suffix:.jsp
ui 다음 예제 jsp,test.jsp 를 새로 만 듭 니 다.

<!DOCTYPE html>
<html lang="en">
  <body>
    Time:${time}
    <br>
    Message:${message}
  </body>
</html>
예제 controller 를 새로 만 듭 니 다.

@Controller
public class TestJspController {
  @GetMapping("/")
  public String forward(Map<String,Object> model){
    //map         
    model.put("time",new Date());
    model.put("message","kyoxue");
    //   JSP     
    return "test";
  }
}
오른쪽 키 공사,maven clean intsall
오른쪽 키 springboot 입구 메 인 프로그램

@SpringBootApplication
public class DemoApplication {
  public static void main(String[] args) {
    SpringApplication.run(DemoApplication.class, args);
  }
}
run as-spring boot app 시작 프로젝트 과정
http://localhost:8084/demo/테스트 액세스

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기