博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
创建spring boot项目启动报错遇到的问题
阅读量:5874 次
发布时间:2019-06-19

本文共 2009 字,大约阅读时间需要 6 分钟。

1、Spring boot,Mybatis 启动报错 Failed to auto-configure a DataSource

***************************      APPLICATION FAILED TO START      ***************************      Description:      Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.      Reason: Failed to determine a suitable driver class      Action:            Consider the following:          If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.          If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).

  解决方法:

  注解这样写:@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class})

2、非法反射,报错信息

WARNING: An illegal reflective access operation has occurredWARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils$1 (file:/C:/Users/%e5%85%b3%e6%96%87%e5%b3%b0/.m2/repository/org/springframework/spring-core/5.0.6.RELEASE/spring-core-5.0.6.RELEASE.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)WARNING: Please consider reporting this to the maintainers of org.springframework.cglib.core.ReflectUtils$1WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operationsWARNING: All illegal access operations will be denied in a future release

  警告信息,暂时没影响

3、idea运行springBoot项目报错 Process finished with exit code 0

  Deleting provided scope of spring-boot-starter-tomcat dependency helps me.

  在pom.xml中添加,然后导入

org.springframework.boot
spring-boot-starter-tomcat

4、alt + enter 导入类

  在使用idea开发java项目的时候,经常需要导入jdk或者是第三方类库的类,如果是自己手工导入的话,非常麻烦,效率很低,下面来介绍下如何设置idea,就可以实现自动导入

  设置自动导入的方式,来自动批量导入,打开idea的settings设置对话框

  在左上角的输入框中输入auto import关键字搜索,找到Editor>General>Auto Import

  勾选上add unambiguous imports on the fly选项,点击确认,关闭对话框

  在设置自动导入的窗口,还有一个Optimize imports on the fly选项,也可以勾选上,可以帮助我们自动去除不需要的导入类

转载地址:http://jwhnx.baihongyu.com/

你可能感兴趣的文章
jQuery 中 data 方法的实现原理
查看>>
python3中使用Redis
查看>>
JavaScript&jQuery.带参数的函数
查看>>
用 Flask 来写个轻博客 (30) — 使用 Flask-Admin 增强文章管理功能
查看>>
Spark MLib 数据类型
查看>>
ADO.NET的几大对象详解
查看>>
纠结的IE浏览器内存泄漏的测试
查看>>
理解契约式编程
查看>>
demo
查看>>
1132: 零起点学算法39——多组测试数据(a+b)
查看>>
1163: 零起点学算法70——Yes,I can!
查看>>
获取手机上安装的应用信息
查看>>
博客地址迁移
查看>>
html转义字符
查看>>
ruby require
查看>>
VS2012 ffmpeg 没有定义的lrint
查看>>
CodeForces 698A - Vacations (Codeforces Round #363 (Div. 2))
查看>>
复利计算器-结对编程1.1
查看>>
Intersection between 2d conic in OpenCASCADE
查看>>
java泛型中<?>和<T>有什么区别?
查看>>