摘要:
spring整合springMVC主要需要配置两个xml配置文件,web.xml和springmvc.xml 步骤: 一、配置springmvc.xml 主要步骤: 1.配置自动扫描的包:扫描controller层 2.配置springmvc的注解驱动,不开启此驱动无法使用RequestBody,R 阅读全文
摘要:
在平常junit单元测试中,junit不能识别spring的注解,从而我们无法使用注入的方式获得ioc容器中的对象。 解决:spring整合junit,用spring提供的运行器,在执行测试方法前读取配置文件(或注解)来创建容器,在执行测试方法。 步骤: 1.添加依赖spring-test <dep 阅读全文
摘要:
步骤: 1.创建jdbc.properties文件,用来管理存放连接数据库的相关信息 jdbc.properties:jdbc.user=root jdbc.password=123456 jdbc.url=jdbc:mysql://localhost:3306/mybatis?useUnicode 阅读全文