2019-11-10 springboot-mybatis 和数据源的整合

配置Druid数据库连接池

先进行 pom 的导包 (我的版本在父pom控制了,这里只贴出了引用)

 <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
        </dependency>

druid 的 yml 配置文件

server:
  port: 8088
  thymeleaf:
    cache: false
    model: HTML5
    prefix: classpath:/templates/**
    suffix: .html
    servlet:
      content-type: text/html
spring:
  messages:
    basename: i18n/Messages,i18n/Pages
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource    #配置当前要使用的数据源的操作类型
    driver-class-name: com.mysql.jdbc.Driver     #配置mysql的驱动程序类
    url: jdbc:mysql://localhost:3306/mldn?useUnicode=true&characterEncoding=UTF-8         #数据库连接地址
    username: root                             #数据库用户名
    password: root                             #数据库连接密码
    dbcp2:                                          #配置数据库连接池的配置
      min-idle: 5                                   #数据库连接池最小维持连接数
      initial-size: 5                               #初始化提供的连接数
      max-total: 20                                  #最大连接数
      max-wait-millis: 20                           #等待连接获取的最大超时时间

对连接进行验证测试

@SpringBootTest(classes = bootBaseController.class)
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
public class testDataSource{
    @Autowired
    private DataSource dataSource;
    @Test
    public void testConnection()throws SQLException {
        System.out.println("++++++++++++++++++++++"+this.dataSource.getConnection());
    }
}

springboot整合mybatis开发框架

mybatis得yml配置

mybatis:
  config-location: classpath:mybatis/mybatis.cfg.xml      # mybatis配置文件所在路径
  type-aliases-package: boot.vo                           # 定义所有操作类的别名所在包
  mapper-locations:                                       # 所有的mapper映射文件
    - classpath:mybatis/mapper/**/*.xml

mybatis得 entity 实体类(省略get/set方法)

 */
@SuppressWarnings("serial")
public class Dept implements Serializable {
    private Long deptno;
    private String dname;

mybatis得 dao 和 xml

//@Repository
@Mapper                     //我平常使用的是Repository ,但是在这里使用测试类必须用@Mapper否则注入不了测试类
public interface IDeptDao {
    public List<Dept> findAll();
}

<mapper namespace="boot.dao.IDeptDao">
    <select id="findAll" resultType="Dept">
        SELECT deptno,dname FROM dept
    </select>
</mapper>

mybatis得service 和 impl

public interface IDeptService {
    public List<Dept> findAll();
}


@Service
public class IDeptServiceImpl implements IDeptService {

   @Autowired
   private IDeptDao deptDao;

    @Override
    public List<Dept> findAll() {
       return this.deptDao.findAll();
    }
}

测试类

@SpringBootTest(classes = bootBaseController.class)
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
public class testDeptService {
    @Autowired
    private IDeptDao service;
    @Test
    public void testDeptService() {
   System.out.println("+++++++++++++++++++++++++++"+service.findAll());
    }
}}

测试结果

++++++++++++++++++++++++++++++++++++++[boot.vo.Dept@315f09ef, boot.vo.Dept@3a66e67e, boot.vo.Dept@75d4a80f, boot.vo.Dept@4596f8f3, boot.vo.Dept@ccf91df]

事务控制

报错信息(service 设置为只读时进行添加报错)

nested exception is java.sql.SQLException: 
Connection is read-only. Queries leading to data modification are not allowed

dao 和 xml

      public boolean doCreate(Dept dept);

    <insert id="doCreate" parameterType="Dept">
        insert into dept(dname) values (#{dname})
    </insert>

service 和 impl

注解表示支持事务
    @Transactional(propagation = Propagation.REQUIRED)
    public boolean add(Dept dept);

    @Override
    public boolean add(Dept dept) {
        return this.deptDao.doCreate(dept);
    }

引入logback pom包

   <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-core</artifactId>
        </dependency>

logback.xml

<?xml version="1.0" encoding="UTF-8"?>

<configuration scan="true">
    <property name="APP" value="${project.artifactId}" />
    <property name="LOG_HOME" value="/data/www/log/${APP}" />
    <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
        <encoder>
            <pattern>%d{yy-MM-dd.HH:mm:ss.SSS} [%-16t] %-5p %-22c{0} %X{ServiceId} - %m%n</pattern>
        </encoder>
    </appender>
    <appender name="DETAIL"
        class="ch.qos.logback.core.rolling.RollingFileAppender" additivity="false">
        <File>${LOG_HOME}/${APP}_detail.log</File>
        <encoder>
            <pattern>%d{yy-MM-dd.HH:mm:ss.SSS} [%-16t] %-5p %-22c{0} %X{ServiceId} - %m%n</pattern>
        </encoder>
        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
            <fileNamePattern>${LOG_HOME}/${APP}_detail.log.%d{yyyyMMdd}</fileNamePattern>
        </rollingPolicy>
    </appender>
    <appender name="ACCESS"
        class="ch.qos.logback.core.rolling.RollingFileAppender" additivity="false">
        <File>${LOG_HOME}/${APP}_access.log</File>
        <encoder>
            <pattern>%d{yy-MM-dd.HH:mm:ss.SSS};%X{ServiceId};%m%n</pattern>
        </encoder>
        <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
            <fileNamePattern>${LOG_HOME}/${APP}_access.log.%d{yyyyMMdd}</fileNamePattern>
        </rollingPolicy>
    </appender>


    <logger name="ACCESS">
        <appender-ref ref="ACCESS" />
    </logger>
    <logger name="druid.sql.Statement" level="DEBUG" />

        下面是自己dao接口得全类名包名
    <logger name="boot.dao" level="TRACE" />

    <root level="INFO">
        <appender-ref ref="DETAIL" />
        <appender-ref ref="CONSOLE" />
    </root>
</configuration>

测试类

  @Test
    public void testAdd() throws  Exception{
        Dept dept =new Dept();
        dept.setDname("张三");
        System.out.println("------------------"+service.add(dept));
    }

结果

19-11-13.01:16:47.811 [main            ] TRACE findAll                 - <==    Columns: deptno, dname
19-11-13.01:16:47.811 [main            ] TRACE findAll                 - <==        Row: 1, 开发部
19-11-13.01:16:47.814 [main            ] TRACE findAll                 - <==        Row: 2, 财务部
19-11-13.01:16:47.815 [main            ] TRACE findAll                 - <==        Row: 3, 市场部
19-11-13.01:16:47.815 [main            ] TRACE findAll                 - <==        Row: 4, 后勤部
19-11-13.01:16:47.815 [main            ] TRACE findAll                 - <==        Row: 5, 公关部

druid 监控配置(application 中加一个 spring.datasource.filters=stat,wall,log4j)

@Configuration
public class DruidConfig {
    @Bean
    public ServletRegistrationBean<StatViewServlet> druidStatViewServlet() {
        ServletRegistrationBean<StatViewServlet> registrationBean = new ServletRegistrationBean<>(new StatViewServlet(),  "/druid/*");
        registrationBean.addInitParameter("allow", "127.0.0.1");// IP白名单 (没有配置或者为空,则允许所有访问)
        registrationBean.addInitParameter("deny", "");// IP黑名单 (存在共同时,deny优先于allow)
        registrationBean.addInitParameter("loginUsername", "root");
        registrationBean.addInitParameter("loginPassword", "1234");
        registrationBean.addInitParameter("resetEnable", "false");
        return registrationBean;
    }

    @Bean
    public FilterRegistrationBean filterRegistrationBean() {
        FilterRegistrationBean filterRegistrationBean = new FilterRegistrationBean() ;
        filterRegistrationBean.setFilter(new WebStatFilter());
        filterRegistrationBean.addUrlPatterns("/*"); // 所有请求进行监控处理
        filterRegistrationBean.addInitParameter("exclusions", "*.js,*.gif,*.jpg,*.css,/druid/*");
        return filterRegistrationBean ;
    }
    @ConfigurationProperties(prefix = "spring.datasource")
    public DataSource druidDataSource() {
        return new DruidDataSource();
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容