zoukankan      html  css  js  c++  java
  • Spring Boot 报错记录

    Spring Boot 报错记录

    1. 由于新建的项目没有配置数据库连接启动报错,可以通过取消自动数据源自动配置来解决

      解决方案1:

       @SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
       //@SpringBootApplication
       @MapperScan("com.example.*")  //扫描:该包下相应的class,主要是MyBatis的持久化类.
      

      解决方案2:

       #去配置文件中配置数据库连接参数
       ########################################################
       ###datasource -- mysqlu7684u6570u636eu5e93u914du7f6e.
       ########################################################
       spring.datasource.url = jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8
       spring.datasource.username = root
       spring.datasource.password = root
       spring.datasource.driverClassName = com.mysql.jdbc.Driver
       spring.datasource.max-active=20
       spring.datasource.max-idle=8
       spring.datasource.min-idle=8
       spring.datasource.initial-size=10
      
    2. 热启动占用端口报错

      解决方案1:

       #在配置文件中修改端口号
       server.port=8888
      

      解决方案2:

       选择另外一种热启动方式,或者关闭端口
      
    3. 扫描包的注解 @MapperScan@ComponentScan 的区别

      首先,@ComponentScan是组件扫描注解,用来扫描@Controller  @Service  @Repository这类,主要就是定义扫描的路径从中找出标志了需要装配的类到Spring容器中

      其次,@MapperScan 是扫描mapper类的注解,就不用在每个mapper类上加@MapperScan了
      这两个注解是可以同时使用的。

       @SpringBootApplication
       //扫描:该包下相应的class,主要是MyBatis的持久化类.
       @MapperScan("com.example.mapper")
       //扫描controller、service等
       @ComponentScan(basePackages = { "com.example.controller", "com.example.service"})
  • 相关阅读:
    opencv安装
    安装电脑
    勿忘心安
    Linux操作
    listBox1_DrawItem
    今天被骂
    我研究群体行为,希望大家一起讨论
    Matlab高级绘图
    网址
    下面哪些机制可以用于进程间通信?
  • 原文地址:https://www.cnblogs.com/renxiuxing/p/9762019.html
Copyright © 2011-2022 走看看