spring项目的常用配置文件

文章描述了一个Spring配置,其中包含了连接MySQL数据库的详细信息,如URL、用户名和密码。它还配置了myBatis以打印执行的SQL语句,并启用了自动驼峰命名转换。此外,提到了在dev环境中启用的日志打印路径以及myBatis的XML映射文件的位置。文章还提及了AOP框架的依赖项,表明了对面向切面编程的支持。
摘要由CSDN通过智能技术生成

平台连接数据库,打印执行的MySQL语句(dev环境有prod环境没有),myBatis的xml文件保存路径,自动驼峰打印

spring:
  datasource:
    url: jdbc:mysql://127.0.0.1:3306/java_blog_spring?characterEncoding=utf8&useSSL=false
    username: root
    password: 1230
    driver-class-name: com.mysql.cj.jdbc.Driver
mybatis:
  mapper-locations: classpath:mapper/**Mapper.xml  # xml文件路径
  configuration: # 配置打印 MyBatis 执行的 SQL
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
    map-underscore-to-camel-case: true  #自动驼峰转换
spring:
  datasource:
    url: jdbc:mysql://127.0.0.1:3306/java_blog_spring?characterEncoding=utf8&useSSL=false
    username: root
    password: 1230
    driver-class-name: com.mysql.cj.jdbc.Driver
mybatis:
  configuration:
    map-underscore-to-camel-case: true  #自动驼峰转换

选择数据库平台,MySQL日志打印路径设置

spring:
  profiles:
    active: dev
logging:
  file:
    path: logs/
  level:
    root: info

数据持久层的实现,xml代码:(mybatis 的xml方法实现文件 要引入的配置)

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.springblog.mapper.BlogMapper">
    
</mapper>

AOP的框架依赖:(使用AOP前,引入的框架)

<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-aop</artifactId>
</dependency>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值