转自http://coder520.com/
一、配置pom.xml,
<properties>标签指定版本,下面的依赖就可以${spring.version}
二、创建表
三、分模块common login user
四、创建resources里的spring.cfg.xml
4.1、首先开启事务编程
4.2、扫描注解生成bean
4.3、包扫描
4.4、扫描注解和包扫描有什么区别?
<context:annotation-config/>是激活那些已经在容器里注册的bean,假如A和B两个类,A依赖B,但是只在cfg里注册A为bean。这时候B是不会注入到A里去的。如果cfg里A和B的bean都有,它就把B注入进去。
<context:component-scan base-package="com.ljs"/>不管A和B有没有注册为bean,它都会帮我们注册然后弄好依赖关系注入。
Spring 开启Annotation <context:annotation-config> 和 <context:component-scan>诠释及区别
5、整合mybatis
5.1、注册sqlSessionFactory的bean
5.1.1 第一个属性注入dataSourcebean
5.1.2 第二个属性声明mapper映射文件的路径
5.2 注册mapper接口的扫描bean
5.2.1 第一个属性是dao的接口包路径
5.2.2 第二个属性是注入sqlSessionFactory的bean
5.3、注册数据源dataSource的bean
6、事务
6.1、开启注解事物驱动
6.2、那么事物管理叫给哪个bean,注册一个处理事物的bean
第一个属性是dataSource的bean
7、当写好jdbc.properties的时候就可以加上读取jdbc.properties里的属性,意思是属性可以占着坑。
<context:property-placeholder location="classpath:jdbc.properties"/>
五、创建jdbc.properties
其中validationQuery=SELECT 1是用来验证数据库连接的查询语句,这个查询语句必须是至少返回一条数据的SELECT语句
六、创建spring-mvc.xml
1、包扫描,主要扫controller,扫controller下的mapper路径然后保存起来,等前端发送请求,然后获取url与它比较,找到了就返回view,找不到就404.
2、注解扫描
3、注册viewResolver的bean,用velocity,后缀是.vm
属性第一个是匹配的后缀
属性第二个是内容编码
4、注册velocity自己的配置bean
属性第一个是这些模板页面的路径(这也就说明了上面不用配置前缀的原因)
属性第二个模板一组属性
七、使用mybatis-generator
1、在pom.xml里加入这个插件,既要在dependence里依赖这个包,还需要再bulid的plugins里配置。
2、告诉应用程序要加载mapper映射文件,不然generator会找不到,需要在build里配置resources,指定xml的路径。
3、配置generatorConfig,xml
4、配置mapper的命令自动生成
八、配置web.xml
1、配置spring配置在哪
2、配置编码过滤器,该xml为3.0
3、spring监听器
4、配置springmvc的DispatcherServlet
之后生成dao接口和mapper.xml就行了。
九、测试
创建controller,service包
1、测试controller
@Controller
@RequestMapping("user")
public class UserController {
@RequestMapping("/index")
public String user(){
User user = new User();
user.setRealName("ljs");
return "user";
}
}
在web-inf下创建views下创建user.vm
<html>
<body>
ljs
</body>
</html>
启动访问ok。
测试service
也就测试操作数据库是否成功
public class UserServiceImpl implements UserService {
@Autowired
private UserMapper userMapper;
@Transactional
@Override
public int createUser(User user) {
return userMapper.insertSelective(user);
}
}
这里@Autowired不能用,
image.png
@Controller
@RequestMapping("user")
public class UserController {
@Autowired
private UserService userService;
@RequestMapping("/index")
public String user(){
User user = new User();
user.setRealName("ljs");
userService.createUser(user);
return "user";
}
}
1、这里出现问题,因为我们数据库设计很多字段都不能为空,所以不能只设置一个realName,空的全部设置。
2、还有Field 'id' doesn't have a default value ,这里忘记点了
image.png
3、还有说没有UserService这个bean原因是我们没有在service上加上@Sevice注解
4、说找不到mapper映射文件,第一个要看的就是spring配置里的路径是否加上了classpath:第二个就是看target文件下是否有加载xml文件
没有就在pom.xml的build里加上
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
最后还是报错就spring配置里的这个bean是扫描dao接口,所以看这里有没有错,例如basePackage要*.dao。
image.png
十、事务测试
原理就是在service方法里调用两个插入数据的方法,这就表明在同一个事物里执行两次数据库操作。然后再第二个插入数据设置id为1(1数据库已经有了),如果事物是成功了,在成功插入第一条之后,插入第二条报错,然后数据库回滚,只要表数据和原来一样就说明事物配置成功。
修改service层的方法
public int createUser(User user, User user1) {
userMapper.insertSelective(user);
userMapper.insertSelective(user1);
return 0;
}
controller的方法
@RequestMapping("/index")
public String user(){
User user = new User();
user.setRealName("ljs");
user.setMobile("15622716980");
user.setPassword("123");
user.setUsername("ljs");
User user1 = new User();
user.setId(1L);
user.setRealName("ljs");
user.setMobile("15622716980");
user.setPassword("123");
user.setUsername("ljs");
userService.createUser(user, user1);
return "user";
}
运行之后发现还是第一条数据已经插入,因为我们还需要配置,spring-mvc和spring配置都有包扫描,我们需要把spring-mvc设置为只扫描controller
<!--包扫描-->
<context:component-scan base-package="com.ljs.*.controller">
</context:component-scan>
在执行可以发现第一个插进,第二个抛出异常,第一个就回滚,数据库表没有改变。
网友评论