JAVA学习
SPRING MVC 引用链接:http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html
Annotations
1.@RequestMapping
1.1 作为URL路径
@Controller
public class HelloWorldController {
@RequestMapping("/helloWorld")
public String helloWorld(Model model) {
model.addAttribute("message", "Hello World!");
return "helloWorld";
}
}
HiberNate 文档 引用链接:http://oss.org.cn/ossdocs/framework/hibernate/reference-v3_zh-cn/index.html
posted on
浙公网安备 33010602011771号