반응형
testController 를 만들고 test.html 화면에 간단하게 "Hello world"를 출력해 보도록 하자.
controller 폴더를 만들고, 그안에 TestController.java 를 생성.
package com.jny.jboard.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class TestController {
@RequestMapping(value = "/test")
public String home(){
return "test.html";
}
}
src/main/resources/static 에 test.html 을 생성.
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
Hello world
</body>
</html>
실행후 접속하면 다음과 같이 성공
## 최초실행시 jdbc url 관련 오류가 발생해서 application.properties에 해당 정보를 넣어 주었다.
반응형
'개발 > springboot 게시판 만들기' 카테고리의 다른 글
빈 등록 방식 - 컴포넌트 탐색 (0) | 2021.09.21 |
---|---|
[spring boot] jsp 사용하기 (0) | 2020.06.27 |
[spring boot] Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. (0) | 2020.06.27 |
[springboot 게시판만들기] 1. 프로젝트 생성 (0) | 2020.06.26 |