品优购项目--dao模块配置文件

Posted hubert-dzl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了品优购项目--dao模块配置文件相关的知识,希望对你有一定的参考价值。

一、在resources包下,分别建三个包:mybatis、properties、spring包

 

1.mybatis包下的配置文件

(1)SqlMapConfig.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
	<plugins>
		<!-- com.github.pagehelper 为 PageHelper 类所在包名 -->
		<plugin interceptor="com.github.pagehelper.PageHelper">
			<!-- 设置数据库类型 Oracle,mysql,MariaDB,SQLite,Hsqldb,PostgreSQL 六种数据库-->
			<property name="dialect" value="mysql"/>
		</plugin>
	</plugins>
</configuration>

2.properties包下的配置文件

(1)db.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/pinyougoudb?characterEncoding=utf-8
jdbc.username=root
jdbc.password=admin

3.spring包下的配置文件

(1)applicationContext-dao.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
	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-4.2.xsd
	http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd 
	http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
	http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
 
	<context:property-placeholder location="classpath*:properties/*.properties" />
	<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
		destroy-method="close">
		<property name="url" value="$jdbc.url" />
		<property name="username" value="$jdbc.username" />
		<property name="password" value="$jdbc.password" />
		<property name="driverClassName" value="$jdbc.driver" />
		<property name="maxActive" value="10" />
		<property name="minIdle" value="5" />
	</bean>
	
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml" />
	</bean>
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<property name="basePackage" value="cn.lijun.core.mapper" />
	</bean>
</beans>

  

以上是关于品优购项目--dao模块配置文件的主要内容,如果未能解决你的问题,请参考以下文章

品优购项目--service-sellergoods模块的配置文件

前端项目品优购上集完整笔记和源码!万字教程,肝了!

HTML+CSS大项目1:品优购项目笔记+源码(万字收藏)

品优购工程创建

HTML+CSS大项目2:品优购项目笔记+源码(万字收藏)

品优购项目(web)