您现在的位置是:网站首页 > 学无止境
spring mvc注解语法
简介spring mvc注解语法
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
//@ResponseBody
//@Controller
@RestController
public class helloController {
@RequestMapping("/tt")
public String hello()
{
return "hello world!";
}
}