欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

关于ssm项目中配置文件的分析

程序员文章站 2022-04-29 23:52:45
...

一、jdbc.properties
一般而言,我们需要使用druid.properties

druid.url=jdbc:mysql://localhost:3306/egoubuy?characterEncoding=utf-8
druid.password=root
druid.username=root
druid.driverClassName=com.mysql.jdbc.Driver
druid.initialSize=5
druid.minIdle=3
druid.maxActive=20

二、log4j.properties

####### Global logging configuration
log4j.rootLogger=DEBUG, stdout
 ########Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n


三、mybatis-conf.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.PageInterceptor">

    </plugin>
</plugins>
</configuration>

四、spring-dao

五、spring-service

六、spring-tran(由于要开启事务所以我们也要开启事务)一般而言,这个也叫spring-mybatis

七、spring-mvc

八、web.xml

九、pom.xml

相关标签: mysql