차근차근 개발자 되기

Spring

101일차: Spring Boot 실습(1)_2021.11.10

wellow 2021. 11. 10. 14:55

 

목차

- Spring Boot 실습 예제 1

 

 

▶ Spring Boot 실습 예제 1 (p) boot01

 

1) boot01 프로젝트 생성

- ‘New Spring Starter Project Dependencies’에서 pom.xml 파일에 등록될 라이브러리 추가하기

(Web에서 Spring Web)

 

2) 의존 라이브러리 추가

- pom.xml에 필요한 의존 라이브러리(jstl 등) 추가

 

3) 환경설정 파일

- Spring Boot의 환경설정 파일인 application.properties에 port와 prefix, suffix 내용 넣기

 

예시

1
2
3
4
5
6
# port
server.port=80
 
# prefix and suffix
spring.mvc.view.prefix=/WEB-INF/views/
spring.mvc.view.suffix=.jsp
cs

 

 

4) views 폴더 생성

- webapp 폴더에 WEB-INF 폴더를 생성하고 하위에 views 폴더 생성

- 컨트롤러에서 return 하는 뷰 페이지 파일 생성(ex. gugu.jsp)

 

5) Controller 생성

- 기본 패키지(/main/java/com/example/demo)에 ‘controller’ 폴더 생성

- ‘SampleController.java’ 클래스 파일 생성

- 메시지 출력, 구구단 출력 등의 메소드 생성

 

예시

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
31
32
33
34
35
36
37
38
39
40
41
42
package com.example.demo.controller;
 
import java.io.IOException;
import java.util.Random;
 
import javax.servlet.http.HttpServletResponse;
 
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
 
@Controller
public class SampleController {
    @RequestMapping("/")
    @ResponseBody
    public void hello(HttpServletResponse response) throws IOException {
        response.getWriter().print("Hello world~!!!");    // out 객체 생성하고 print() 메소드로 메세지 출력
    }
 
    @RequestMapping("/abc")
    @ResponseBody
    public String abc() {
        return "hi abc";
    }
 
    @RequestMapping("/hello")
    public String hello() {
        System.out.println("hello in");
        return "hello";
    }
 
    @RequestMapping("/gugu")
    public String gugu(Model model) {
        Random r = new Random();
        int dan = r.nextInt(8+ 2// 2 ~ 9단
        model.addAttribute("dan", dan);
        return "gugu";
    }
 
}
 
cs

 

 

6) index.jsp 파일 생성하고 실행하기

- webapp 폴더에 index.jsp 파일 생성하고 location 객체로 요청

- index.jsp 파일 실행시켜서 브라우저에서 결과 확인

 

예시

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%@ 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>
 
<script>
    location.href="abc";
//    location.href="hello";
//    location.href="gugu";
</script>
 
</body>
</html>
cs