본문 바로가기

기존카테고리/Spring_문법

Class Mapping

package com.test.customTag;


import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;


@Controller

@RequestMapping("aaa")

public class TestClassMapping {

@RequestMapping("bbb")

public String testMapping(){

return ("/aaa/bbb");

}


}


Url:

http://localhost:8081/customTag/aaa/bbb


메소드 뿐만 아니라 클래서에도 맵핑을 걸어준다.


경로는

클래스 Mapping "aaa" 다음에

메스드 Mapping "bbb"


사용예는 추측해 보면

회원가입시 members 폴더에

input, update 등 파일을 사용할 때 유용할 듯.