SpringMVC+Spring+Hibernate 框架整合实例

import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import pers.cly.ssh_demo3.service.UserService; import javax.annotation.Resource; @Controller//该注解用来识别控制器 @RequestMapping("hello")//该注解用来控制url书写时,控制器的选择 public class HelloController { @Resource(name="userService") // 获取spring配置文件中bean的id为userService的具体实现类,并注入 private UserService userServiceImpl;//service层的用户接口类。 @RequestMapping("helloworld")//该注解用来控制url书写时,具体方法的选择(还可以绑定参数等) public String helloworld() { System.out.print("用户姓名:"+userServiceImpl.select_user_name());//调用接口方法获取用户姓名,打印用户姓名 return "hello_world";//跳转到jsp页面 } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/8bface766ffcff71257d54a06ee0a4b0.html