+
95
-

回答

你这少了@ResponseBody,完整如下:

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HelloController {
@RequestMapping("/hello")
@ResponseBody
public String index() {
return "Hello World1";
}
}


网友回复

我知道答案,我要回答