首页 > Spring MVC
阅读:833
Spring MVC应用@Autowired和@Service进行依赖注入
在前面学习的控制器中并没有体现 MVC 的 M 层,这是因为控制器既充当 C 层又充当 M 层。这样设计程序的系统结构很不合理,应该将 M 层从控制器中分离出来。
Spring MVC 框架本身就是一个非常优秀的 MVC 框架,它具有依赖注入的优点,可以通过 org.springframework.beans.factory. annotation.Autowired 注解类型将依赖注入到一个属性(成员变量)或方法,例如:
下面《Spring MVC获取参数的几种常见方式》中“登录”和“注册”的业务逻辑处理分离出来,使用 Service 层实现。
首先创建 service 包,在该包中创建 UserService 接口和 UserServiceImpl 实现类。
UserService 接口的具体代码如下:
Spring MVC 框架本身就是一个非常优秀的 MVC 框架,它具有依赖注入的优点,可以通过 org.springframework.beans.factory. annotation.Autowired 注解类型将依赖注入到一个属性(成员变量)或方法,例如:
@Autowired
public UserService userService;
下面《Spring MVC获取参数的几种常见方式》中“登录”和“注册”的业务逻辑处理分离出来,使用 Service 层实现。
首先创建 service 包,在该包中创建 UserService 接口和 UserServiceImpl 实现类。
UserService 接口的具体代码如下:
package service; import pojo.UserForm; public interface UserService { boolean login(UserForm user); boolean register(UserForm user); }UserServiceImpl 实现类的具体代码如下:
package service; import org.springframework.stereotype.Service; import pojo.UserForm; //注解为一个服务 @Service public class UserServiceImpl implements UserService { public boolean login(UserForm user) { if ("zhangsan".equals(user.getUname()) && "123456".equals(user.getUpass())) { return true; } return false; } public boolean register(UserForm user) { if ("zhangsan".equals(user.getUname()) && "123456".equals(user.getUpass())) { return true; } return false; } }然后在配置文件中添加一个 <context:component-scan base-package=“基本包”/>元素,具体代码如下:
<context:component-scan base-package="service" />
最后修改控制器类 UserController,具体代码如下:package controller; import javax.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import pojo.UserForm; import service.UserService; import com.sun.org.apache.commons.logging.Log; import com.sun.org.apache.commons.logging.LogFactory; @Controller @RequestMapping("/user") public class UserController { // 得到一个用来记录日志的对象,这样在打印信息的时候能够标记打印的是哪个类的信息 private static final Log logger = LogFactory.getLog(UserController.class); // 将服务依赖注入到属性userService @Autowired public UserService userService; /** * 处理登录 */ @RequestMapping("/login") public String login(UserForm user, HttpSession session, Model model) { if (userService.login(user)) { session.setAttribute("u", user); logger.info("成功"); return "main"; // 登录成功,跳转到 main.jsp } else { logger.info("失败"); model.addAttribute("messageError", "用户名或密码错误"); return "login"; } } /** * 处理注册 */ @RequestMapping("/register") public String register(@ModelAttribute("user") UserForm user) { if (userService.register(user)) { logger.info("成功"); return "login"; // 注册成功,跳转到 login.jsp } else { logger.info("失败"); // 使用@ModelAttribute("user")与model.addAttribute("user",user)的功能相同 // 在register.jsp页面上可以使用EL表达式${user.uname}取出ModelAttribute的uname值 return "register"; // 返回register.jsp } } }
所有教程
- socket
- Python基础教程
- C#教程
- MySQL函数
- MySQL
- C语言入门
- C语言专题
- C语言编译器
- C语言编程实例
- GCC编译器
- 数据结构
- C语言项目案例
- C++教程
- OpenCV
- Qt教程
- Unity 3D教程
- UE4
- STL
- Redis
- Android教程
- JavaScript
- PHP
- Mybatis
- Spring Cloud
- Maven
- vi命令
- Spring Boot
- Spring MVC
- Hibernate
- Linux
- Linux命令
- Shell脚本
- Java教程
- 设计模式
- Spring
- Servlet
- Struts2
- Java Swing
- JSP教程
- CSS教程
- TensorFlow
- 区块链
- Go语言教程
- Docker
- 编程笔记
- 资源下载
- 关于我们
- 汇编语言
- 大数据
- 云计算
- VIP视频