Adventure Time - Finn 3
본문 바로가기
카테고리 없음

@PathVariable

by hyun9_9 2024. 3. 28.

버전이 높아지면서 보게될 확률이 높아짐
뷰에서 컨트롤러로 데이터를 보내 줄때
Commabd 객체에 다 담기진 않은 객체를 받아올때도 있음

Data는 아니야 test3요청할때 추가로 데이터가 필요해
:Command객체 외에 해당 C메서드에서 필요한 데이터를 V 측에서 전송한 경우
요청 경로에 보냄

V 측에서 전송한 데이터를 C 메서드에서 받기위해 사용하는 @
메서드 인자에서 받음

 

	@RequestMapping("/test4/{searchCondition}/{seachKeyword}")
	public String test4(@PathVariable String searchCondition,@PathVariable String seachKeyword, Data data) {//첫요청
		//뿌리는 방법
		//3.Command 객체 사용
		//가장 많이 사용

		System.out.println(data);
		return "test";
	}