Spring框架——基于XML/注解开发
IoC的实现方式有两种:XML配置文件、基于注解。
MVC开发模式:
Controller层
Service层
Repository层
Controller层调用Service,Service调用Repository
基于XML配置文件方式
xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="userController" class="com.sunjian.controller.UserController">
<property name="userService" ref="userService"></property>
</bean>
<bean id="userService" class="com.sunjian.service.impl.UserServiceImpl">
<property name="userRepository" ref="userRepository"></property>
</bean>
<bean id="userRepository" class="com.sunjian.repository.impl.UserRepositoryImpl"></bean>
</beans>
entity
package com.sunjian.entity;
public class User2 {
private Integer id;
private String name;
public User2(int id, String name) {
this.id = id;
this.name = name;
}
public User2(Integer id, String name) {
this.id = id;
this.name = name;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "User2{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
}
repository
package com.sunjian.repository;
import com.sunjian.entity.User2;
/**
* @author sunjian
* @date 2020/3/14 15:44
*/
public interface UserRepository {
public User2 findUserById(Integer id);
}
repositoryImpl
package com.sunjian.repository.impl;
import com.sunjian.entity.User2;
import com.sunjian.repository.UserRepository;
import java.util.HashMap;
import java.util.Map;
/**
* @author sunjian
* @date 2020/3/14 15:45
*/
public class UserRepositoryImpl implements UserRepository {
private static Map<Integer, User2> userMap;
static {
userMap = new HashMap<Integer, User2>();
userMap.put(1, new User2(1, "张三"));
userMap.put(2, new User2(2, "李四"));
}
public User2 findUserById(Integer id) {
return userMap.get(id);
}
}
service
package com.sunjian.service;
import com.sunjian.entity.User2;
/**
* @author sunjian
* @date 2020/3/14 15:36
*/
public interface UserService {
User2 findUserBuId(Integer id);
}
serviceImpl
package com.sunjian.service.impl;
import com.sunjian.entity.User2;
import com.sunjian.repository.UserRepository;
import com.sunjian.repository.impl.UserRepositoryImpl;
import com.sunjian.service.UserService;
/**
* @author sunjian
* @date 2020/3/14 15:38
*/
public class UserServiceImpl implements UserService {
private UserRepository userRepository;
public void setUserRepository(UserRepository userRepository) {
this.userRepository = userRepository;
}
public User2 findUserBuId(Integer id) {
return userRepository.findUserById(id);
}
public void setUserRepository(UserRepositoryImpl userRepository) {
}
}
controller
package com.sunjian.controller;
import com.sunjian.entity.User2;
import com.sunjian.service.UserService;
import com.sunjian.service.impl.UserServiceImpl;
/**
* @author sunjian
* @date 2020/3/14 15:56
*/
public class UserController {
private UserService userService;
public void setUserService(UserService userService) {
this.userService = userService;
}
public User2 findUserById(Integer id){
return userService.findUserBuId(id);
}
}
test class
package com.sunjian.test;
import com.sunjian.controller.UserController;
import com.sunjian.entity.User2;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @author sunjian
* @date 2020/3/14 16:03
*/
public class Test4 {
public static void main(String[] args) {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring2.xml");
UserController userController = (UserController) applicationContext.getBean("userController");
User2 user = userController.findUserById(2);
System.out.println(user);
}
}
User2{id=2, name='李四'}
基于注解方式
xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
<!-- 将类扫描到IoC容器中 -->
<context:component-scan base-package="com.sunjian"></context:component-scan>
</beans>
entity
package com.sunjian.entity;
public class User2 {
private Integer id;
private String name;
public User2(int id, String name) {
this.id = id;
this.name = name;
}
public User2(Integer id, String name) {
this.id = id;
this.name = name;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "User2{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
}
repository
package com.sunjian.repository;
import com.sunjian.entity.User2;
/**
* @author sunjian
* @date 2020/3/14 15:44
*/
public interface UserRepository {
public User2 findUserById(Integer id);
}
repositoryImpl
package com.sunjian.repository.impl;
import com.sunjian.entity.User2;
import com.sunjian.repository.UserRepository;
import org.springframework.stereotype.Repository;
import java.util.HashMap;
import java.util.Map;
/**
* @author sunjian
* @date 2020/3/14 15:45
*/
@Repository
public class UserRepositoryImpl implements UserRepository {
private static Map<Integer, User2> userMap;
static {
userMap = new HashMap<Integer, User2>();
userMap.put(1, new User2(1, "张三"));
userMap.put(2, new User2(2, "李四"));
}
public User2 findUserById(Integer id) {
return userMap.get(id);
}
}
service
package com.sunjian.service;
import com.sunjian.entity.User2;
/**
* @author sunjian
* @date 2020/3/14 15:36
*/
public interface UserService {
User2 findUserBuId(Integer id);
}
serviceImpl
package com.sunjian.service.impl;
import com.sunjian.entity.User2;
import com.sunjian.repository.UserRepository;
import com.sunjian.repository.impl.UserRepositoryImpl;
import com.sunjian.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* @author sunjian
* @date 2020/3/14 15:38
*/
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserRepository userRepository;
public void setUserRepository(UserRepository userRepository) {
this.userRepository = userRepository;
}
public User2 findUserBuId(Integer id) {
return userRepository.findUserById(id);
}
public void setUserRepository(UserRepositoryImpl userRepository) {
}
}
controller
package com.sunjian.controller;
import com.sunjian.entity.User2;
import com.sunjian.service.UserService;
import com.sunjian.service.impl.UserServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
/**
* @author sunjian
* @date 2020/3/14 15:56
*/
@Controller
public class UserController {
@Autowired
private UserService userService;
public void setUserService(UserService userService) {
this.userService = userService;
}
public User2 findUserById(Integer id){
return userService.findUserBuId(id);
}
}
test class
package com.sunjian.test;
import com.sunjian.controller.UserController;
import com.sunjian.entity.User2;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @author sunjian
* @date 2020/3/14 16:24
*/
public class Test5 {
public static void main(String[] args) {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring3.xml");
UserController userController = (UserController)applicationContext.getBean("userController");
User2 user = userController.findUserById(1);
System.out.println(user);
}
}
User2{id=1, name='张三'}
OK.
Spring框架——基于XML/注解开发的更多相关文章
- Spring 框架的概述以及Spring中基于XML的IOC配置
Spring 框架的概述以及Spring中基于XML的IOC配置 一.简介 Spring的两大核心:IOC(DI)与AOP,IOC是反转控制,DI依赖注入 特点:轻量级.依赖注入.面向切面编程.容器. ...
- Spring中基于xml的AOP
1.Aop 全程是Aspect Oriented Programming 即面向切面编程,通过预编译方式和运行期动态代理实现程序功能的同一维护的一种技术.Aop是oop的延续,是软件开发中的 一个热点 ...
- 跟着刚哥学习Spring框架--通过XML方式配置Bean(三)
Spring配置Bean有两种形式(XML和注解) 今天我们学习通过XML方式配置Bean 1. Bean的配置方式 通过全类名(反射)的方式 √ id:标识容器中的bean.id唯一. √ cl ...
- 基于XML的开发
基于XML的开发 1.定义一个切面类 /** * Created by zejian on 2017/2/20.*/ public class MyAspectXML { public void be ...
- spring的基于xml的AOP配置案例和切入点表达式的一些写法
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.spr ...
- spring 框架的xml文件如何读取properties文件数据
spring 框架的xml文件如何读取properties文件数据 第一步:在spring配置文件中 注意:value可以多配置几个properties文件 <bean id="pro ...
- 10 Spring框架--基于注解和xml的配置的应用案例
1.项目结构 2.基于xml配置的项目 <1>账户的业务层接口及其实现类 IAccountService.java package lucky.service; import lucky. ...
- 10 Spring框架--基于注解的IOC配置
1.工程环境搭建 2.基于注解的IOC配置 IOC注解的分类 (1)用于创建对象的 他们的作用就和在XML配置文件中编写一个<bean>标签实现的功能是一样的@Component: 作用: ...
- Spring框架之使用JdbcTemplate开发Dao层程序
简介: JdbcTemplate开发dao层程序 由Spring框架给我们提供,Spring提供的很多操作数据源(关系型数据库,二维表格模型,有明确的行和列(mysql/orcal等) 非关系 ...
随机推荐
- Mac下如何使用homebrew
Homebrew简称brew,是Mac OSX上的软件包管理工具,能在Mac中方便的安装软件或者卸载软件. 常用的命令: 搜索软件:brew search 软件名,如brew search wget ...
- MyBatis XML 配置文件 properties 元素扩展
在分析 MyBatis XML 配置文件 properties 元素时提到了三种配置方式,其中 property 子元素 和 properties 文件都比较容易理解,但是为什么还要提供一种代码参数传 ...
- 云服务器离线安装MariaDB安装步骤和解决办法
前面我写了tomcat的安装那么接下来我们来安装云服务的数据库服务 第一步:下载安装包 https://downloads.mariadb.org/ 按照上图所示操作就能完成在线安装,但由于国内的网络 ...
- APP内计费规范出台 手游乱收费现象能被遏制?
手游乱收费现象能被遏制?" title="APP内计费规范出台 手游乱收费现象能被遏制?"> 在一个混乱.无秩序的环境中竞争,虽然有可能不择手段地获取更多的利益,但 ...
- windows 右键新建html文档
1.win+R 输入 regedit 启动注册表 2.HKEY_CLASSES_ROOT->.html 3.右键新建-项 名为:ShellNew 4.在右侧空白区右键新建字符串值FileName ...
- Android 粘合剂'Binder'
背景知识 要详细掌握Android 的Binder通信机制需要先提前了解一些通信原理与Linux系统的基础知识. RPC RPC(Remote Procedure Call),即远程过程调用,也被称为 ...
- 国际控制报文协议ICMP
国际控制报文协议ICMP ICMP简介 ICMP 用于主机或路由器报告差错情况和提供有关异常情况的报告(检测网络错误). ICMP 不是高层协议,而是 IP 层的协议. ICMP 报文的格式 ICMP ...
- 微信小程序支付到第三方商户账号
使用场景:合作商家使用本公司小程序开店,要求支付金额直接到合作商家的公司微信账户; 使用要求:合作商家需提供微信支付关联,商户号,商户API密钥,API证书(该证书只用作退款功能,不开发退款可以不用) ...
- Python中max()内置函数使用(list)
在学习完列表和元组的基础知识后,做到一个题: 求出列表中频次出现最多的元素. 学习到了python内置函数max的用法 其参数key的用法 匿名函数lamda的用法 python内置函数max() m ...
- web前端 关于浏览器兼容的一些知识和问题解决
浏览器兼容 为什么产生浏览器兼容,浏览器兼容问题什么是浏览器兼容: 所谓的浏览器兼容性问题,是指因为不同的浏览器对同一段代码有不同的解析,造成页面显示效果不统一的情况. 浏览器兼容产生的原因: 因为不 ...