[Spring] Controller 리턴타입
pom Dependencies에 아래 jackson-databind를 추가해준다. Bundle타입은 제대로 실행이 안되므로pom.xml에 bundle을 지워주자. json.parse를 쓰지 않아도 곧바로 데이터를 넘길 수 있다. BadgeController.java12345678910111213141516171819202122package com.ktds.jgbaek.web; import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody; import com.ktd..