Spring Boot常见配置及错误

Posted 异想天开

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot常见配置及错误相关的知识,希望对你有一定的参考价值。

一、SpringBoot常见配置

(1)SpingBoot与MyBatis集成时跟踪SQL语句

log4j:
  logger:
    java:
      sql:
        ResultSet: TRACE

(2)日志跟踪

debug:  true
logging: 
  config:  classpath:log4j2/log4j2.xml

(3)MyBatis集成: 

#mybatis配置
mybatis:
  #配置映射类所在包名
  type-aliases-package: com.xx.it.model
  (数据库实体对象所在路径,一般为@Data对象,非Mapper注释项所在路径)
  #配置mapper.xml文件所在路径
  mapper-location: classpath:com/xx/it/*.xml(非必须项,可以不配)

#不需要再配置Spring任何文件
@SpringBootApplication
 public class Application {
   SpringApplication.run(Application.class,args);
 }

  Mapper所在路径不需要配置,系统会自动扫描与Application同级及以下的所有目录,同时对应的Spring也不需要配置

二、常见错误

(1)SpringBoot与MyBatis集成

  A.ResultMap与ResultType导致的问题

<resultMap id="sample" type="com.xx.it.SampleVo">
  <result property="id" column="id" />
  <result property="name" column="name" />
  <result property="useYn" column="use_yn" />
</resultMap>

<select id="selectSample" resultMap="sample">
  select id,name,useYn from sample where id = #{id}
</select>

<select id="getReply" parameterType="sampleVo" resultType="sample">
  select id,name,useYn from sample where id = #{id}
</select>

  

   ResultMap:组装数据库中结果与实体对象的映射关系(将数据库中查询出来的结果映射给实体类)

   column:表中字段名;property:实体类的属性名

  

  

  

 

以上是关于Spring Boot常见配置及错误的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot日志配置及输出

Spring Boot 常规错误一览及解决方案

如何使用junit在spring-boot中测试常见错误ErrorController

Spring Boot系列Spring Boot初级应用及配置文件

spring boot框架学习9-spring boot的web开发-错误解决及跳转页面

Spring boot:thymeleaf 没有正确渲染片段