目录
表头声明
配置
context:annotation-config
context:component-scan
mvc:annotation-driven
mvc:default-servlet-handler
数据库连接
sqlSessionFactory
MapperScannerConfigurer
表头声明
如使用spring,springMVC等注解,表头需配置,否则表头会报错。
<?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"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:task="http://www.springframework.org/schema/task"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.1.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
">
? ?
</beans>
配置
context:annotation-config
spring配置使用注解
使@ Resource 、@ PostConstruct、@Antowired等注解自动注入
<context:annotation-config/>
context:component-scan
该配置包含了< context:annotation-config/>的内容,若使用该注解,则< context:annotation-config/>可舍去
base-package表示该包下的所有注解将全部扫描
<context:component-scan base-package="com.jm"/>
mvc:annotation-driven
springMVC配置使用注解
提供controller请求转发,json自动转换等功能
<mvc:annotation-driven />
mvc:default-servlet-handler
使用默认的servlet来响应静态文件
<mvc:default-servlet-handler/>
数据库连接
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
? ?<property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property>
? ?<property name="url" value="jdbc:mysql://localhost:端口号/数据库名字?serverTimezone=Asia/Shanghai"/>
? ?<property name="username" value="用户名"></property>
? ?<property name="password" value="密码"></property>
</bean>
sqlSessionFactory
mapperLocations的value值为mapper包下所有文件的路径。
dataSource的ref值为DriverManagerDataSource(数据库连接)配置的id。
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="mapperLocations" value="classpath:com/ml/mapper/*.xml"></property>
<property name="dataSource" ref="dataSource"></property>
</bean>
?
basePackage的value值为dao层接口包的位置。
sqlSessionFactory的value值为上个配置SqlSessionFactoryBean的id名字。
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.ml.dao"></property>
<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
</bean>
|