INTELLIJ 정적 컨텐츠

정적 컨텐츠 : 웹브라우저에 그냥 내려주는 서비스, 변환하지 않고 넘겨준다

정적 컨텐츠 생성 위치 : src/main/resources/static/파일명(hello-static).html

해당 파일 경로 : localhost:8080/파일명(hello-static) .html

* 동작 원리 : 웹 브라우저에서 (hello-static).html의 경로를 요청 받으면, 먼저 컨트롤러에서 찾는다. 

해당 경로가 컨트롤러에 없으면,  src/main/resources/static/에서 찾는다.

<!DOCTYPE HTML>
<html>
<head>
    <title>static content</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
정적 컨텐츠 입니다.
</body>
</html>

 

실행 결과 

경로 확인

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

INTELLIJ mvc & 템플릿 엔진

mvc, 템플릿 엔진 : 서버에서 html을 동적으로 바꿔서 내보내는 것, 변환 후 넘겨준다

* @RequestParam("아이디명") 타입 변수명 : req값을 넒겨 받는 용도

package hello.hellospring.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;

@Controller
public class HelloController {

    @GetMapping("hello")
    public String hello(Model model){
        model.addAttribute("data", "hello!!");
        return "hello";
    }

    @GetMapping("hello-mvc")
    public String helloMvc(@RequestParam("name") String name, Model model){
        model.addAttribute("name", name);
        return "hello-template";
    }
}

 

실행 결과

경로 확인

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

INTELLIJ api

api : json 구조로 클라이언트에게 전달하는 방식

@ResponseBody : HTTP body부분에 직접 넣겠다는 의미

따라서, 해당 페이지 페이지 소스를 보게 되면 보통 아래와 같이 html태그들이 보인다

 

하지만, @ResponseBody를 추가하게 되면 아래와 같이 html태그가 없다

 

 

json이란? key, value로 이루어진 구조

json형식 만드는법 : return 값을 html파일로 명시하지 않고, 보내고 싶은 데이터를 지정

위와 같이, 받아온 name을 getter setter를 통해 저장한 후 해당 객체를 보내준다.

 

실행 결과

json 형식 !!!

 

@Responsebody가 붙어있지 않으면, return을 통해  templates/html파일로 전달한다 (viewResolver 동작)

@ResponseBody 가 있으면, return값이 문자인 경우 문자 내용을 그대로 반환 (StringConverter 동작)

return값이 객체인 경우, default값으로 json형식으로 반환 (JsonConverter 동작)

+ Recent posts