JAVA学习笔记

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

原文地址:https://www.cnblogs.com/zhuzhenpeng/p/4555393.html