目录
目录
文章目录
前言
一、为什么要整合MyBatis?
二、使用步骤
1.在pom.xml文件中导入依赖
2.创建AccountDao接口
3.创建AccountService接口
4.创建AccountServiceImpl实现类
5.创建Spring核心配置类(这里就叫Application)名称可以任意起
6.测试(该测试类可以看成servlet层)
总结
整合之前
整合之后
提示:以下是本篇文章正文内容,下面案例可供参考
Spring框架主要用service层(业务逻辑层),当然也可以用于其他层。那么在service层的时候,大家知道,service层中需要调用dao层去操作数据库,那么在service层中需要创建SqlSession对象等一些列操作。例如:查询所有产品是一个方法,添加产品又是一个方法,那么SqlSession对象等需要创建多次,读取MyBatis核心配置文件也需要多次,就会非常麻烦!
上面就是没有整合的效果,每个操作都需要编写一次相同的代码,特别的烦!!!接下来整合一下
由于之前的总是使用的是MyBatis中内置的连接池,现在使用Druid连接池。在resources目录下导入properties文件(用于存放数据库信息)
代码如下(示例):
org.springframework
spring-test
5.1.2.RELEASE
test
junit
junit
4.12
test
org.springframework
spring-context
5.1.2.RELEASE
mysql
mysql-connector-java
5.1.47
com.alibaba
druid
1.1.23
org.mybatis
mybatis
3.5.6
org.mybatis
mybatis-spring
2.0.6
org.springframework
spring-jdbc
5.1.2.RELEASE
org.slf4j
slf4j-api
1.7.20
ch.qos.logback
logback-classic
1.2.3
ch.qos.logback
logback-core
1.2.3
db.driverClass=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/day32
db.username=root
db.password=123456
使用注解方式编写sql语句。这里简单说一句,我觉得写sql语句的时候,使用注解跟xml文件一起使用的编写的效率会比较高,必须需要动态sql的就可以在xml文件中写,哪种简单用哪种!
代码如下(示例):
//创建dao接口
public interface AccountDao {
//编写sql语句
@Select("select * from account")
List findAll();
}
代码如下(示例):
//创建业务逻辑层接口
public interface AccountService {
//该方法用于去调用dao接口的
List findAll();
}
/*
Service层整合dao层:
1.在AccountServiceImpl类中定义AccountDao属性
2.使用@Autowired注入进来AccountDao的代理对象
3.调用方法
*/
@Service
public class AccountServiceImpl implements AccountService {
//使用注解为accountDao注入数据(使用的set方式)
@Autowired
private AccountDao accountDao;
@Override
public List findAll() {
//调用dao接口中方法并返回
return accountDao.findAll();
}
}
@Configuration //声明该类是核心配置类
@ComponentScan("com.itheima") //开启spring注解扫描
@PropertySource("classpath:db.properties") //引入properties文件
@MapperScan("com.itheima.dao") //MyBatis扫描dao接口
public class Application {
//定义属性 为属性注入数据(数据的来源上面引入的db.properties文件)
@Value("${db.driverClass}")
private String driverClass;
@Value("${db.url}")
private String url;
@Value("${db.username}")
private String username;
@Value("${db.password}")
private String password;
//创建数据源返回数据源,Spring会自动调用该方法,并将该对象交给IOC容器管理
@Bean
public DataSource dataSource(){
DruidDataSource druidDataSource = new DruidDataSource();
druidDataSource.setDriverClassName(driverClass);
druidDataSource.setUrl(url);
druidDataSource.setUsername(username);
druidDataSource.setPassword(password);
return druidDataSource;
}
//创建SqlSessionFactoryBean对象,设置形参,Spring会自动去调用IOC容器中已有的数据源
@Bean
public SqlSessionFactoryBean sqlSessionFactoryBean(DataSource dataSource){
SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
sqlSessionFactoryBean.setDataSource(dataSource);
return sqlSessionFactoryBean;
}
}
三层架构流程:
前端发送请求 --> servlet层接受请求,调用service层的对应方法 --> service层再调用dao层方法 --> dao层就去操作数据库
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = Application.class)
public class textMethod {
//定义类型为AccountService 通过自动装配注入数据(去IOC容器中找)
@Autowired
private AccountService accountService;
@Test
public void method() {
//调用serivce中的方法,返回一个集合
List all = accountService.findAll();
for (Account account : all) {
System.out.println(account);
}
}
}
最开始咱们将Spring可以整合MyBatis,可以简化service中的代码, 现在看看已经简化成几句代码了。可以跟之前的比较一下
/*
Service层整合dao层:
1.在AccountServiceImpl类中定义AccountDao属性
2.使用@Autowired注入进来AccountDao的代理对象
3.调用方法
*/
@Service
public class AccountServiceImpl implements AccountService {
//使用注解为accountDao注入数据(使用的set方式)
@Autowired
private AccountDao accountDao;
@Override
public List findAll() {
//调用dao接口中方法并返回
return accountDao.findAll();
}
}
基本已经讲完啦!第一次写,有什么不对的地方,可以一起交流!
目录
文章目录
前言
一、为什么要整合MyBatis?
二、使用步骤
1.在pom.xml文件中导入依赖
2.创建AccountDao接口
3.创建AccountService接口
4.创建AccountServiceImpl实现类
5.创建Spring核心配置类(这里就叫Application)名称可以任意起
6.测试(该测试类可以看成servlet层)
总结
提示:
这里对文章进行总结:以上就是今天要讲的内容,本文仅仅简单介绍了纯注解的简单使用。