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 2015-06-05 18:48  漫步云间  阅读(128)  评论(0)    收藏  举报