码迷,mamicode.com
首页 > 数据库 > 详细

spring boot 启动报错:Cannot determine embedded database driver class for database type NONE

时间:2018-02-04 12:40:10      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:ati   term   相关   关于   信息   添加   解决办法   class   自动   

错误原因:spring boot默认会加载org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration类,DataSourceAutoConfiguration类使用了@Configuration注解向spring注入了dataSource bean。因为工程中没有关于dataSource相关的配置信息,当spring创建dataSource bean因缺少相关的信息就会报错。

解决办法:第一种:在Application类上增加@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class}),阻止spring boot自动注入dataSource bean

     第二种:增加数据库配置相关信息

 技术分享图片

 

springboot之freemarker:

创建springboot项目,在pom中添加了freemarker的jar包,

技术分享图片

 

在controller层写好相关代码并且把信息传到指定的.ftl文件中,

技术分享图片

 

在.ftl中把信息取出来

技术分享图片

启动,运行正常!

技术分享图片

 

spring boot 启动报错:Cannot determine embedded database driver class for database type NONE

标签:ati   term   相关   关于   信息   添加   解决办法   class   自动   

原文地址:https://www.cnblogs.com/salycr/p/8412669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!