package com.msb.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller @RequestMapping("prePath2") public class MyController { @ResponseBody @RequestMapping("firstPath2") public String firstController(){ return "hello springboot"; } }