일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- svn 변경된 파일 추출
- ant
- mysql dml
- svn dump
- VirtualBox
- Remmina
- svn commit
- svn
- Failed to download metadata for repo 'appstream'
- javax.servlet.GenericFilter
- grep
- NEXUS
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- WH question
- Oracle install
- xrdp
- 포스트그레스 설치
- svn 특정 리비전 사이 추출
- expected at least 1 bean which qualifies as autowire candidate
- taskkill
- svn log
- svn update
- docker oracle12c
- Store password unencrypted
- apt-get update 오류
- svn load
- svn 사용법
- docker 폐쇄망
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- postgres install
Archives
- Today
- Total
기억의 습작
Using JSP in Spring boot 본문
스프링 부트에서 JSP 사용하기 위해 설정하는 방법
테스트 환경
Spring boot 2.2.5.RELEASE Gradle build YML |
Git 소스 다운로드
build.gradle 설정
compile(‘org.apache.tomcat.embed:tomcat-embed-jasper’)
compile(‘javax.servlet:jstl:1.2’)
application.yml 설정
spring:
mvc:
view:
prefix: ‘/WEB-INF/views/’
suffix: ‘.jsp’
jsp 파일 생성
src/main/webapp/WEB-INF/views/index.jsp 위치에 파일을 생성한다.
<%@ page language=“java” contentType=“text/html; charset=UTF-8” pageEncoding=“UTF-8”%>
<!DOCTYPE html>
<html>
<head>
<meta charset=“UTF-8”>
<title>Insert title here</title>
</head>
<body>
hello Cho Byeong kook.
</body>
</html>
Controller 를 생성한다
package com.mobileleader.blog.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class MainController {
@RequestMapping(“/”)
public String main() {
return “index”;
}
}
페이지 접속 하기
주의사항
- thymeleaf 와 같이 혼용해서 사용할 수 없습니다. 즉, pom.xml 이나 build.gradle 에 thymeleaf 라이브러리를 추가하면 오류가 발생한다.
728x90
반응형
LIST
'Software > JAVA' 카테고리의 다른 글
로그레벨 정의 및 순서 (0) | 2021.08.26 |
---|---|
STS 4에서 Spring Legacy Project 사용하기 (0) | 2021.08.26 |
YML 사용자 프로퍼티 사용 (0) | 2021.08.26 |
lombok 추가시 Exception in thread “main” java.awt.AWTError: Assistive Technology not found: org.GNOME.Accessibility.AtkWrapper 오류발생 (0) | 2021.08.26 |
expected at least 1 bean which qualifies as autowire candidate (0) | 2021.08.26 |