学习写代码呀

导航

2019年1月18日 #

Cannot determine embedded database driver class for database type NONE

摘要: springboot+jpa使用自定义配置文件连接数据库报错:Cannot determine embedded database driver class for database type NONE 原因:没有配置数据源dataSource,配置文件加载进来了的。 解决办法:在配置类中配置数据源 阅读全文

posted @ 2019-01-18 16:19 学习写代码呀 阅读(3214) 评论(0) 推荐(0) 编辑

The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar报错

摘要: 缺少jstl依赖解析xml文件,报错jaspException 添加依赖如下: <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> 阅读全文

posted @ 2019-01-18 16:15 学习写代码呀 阅读(142) 评论(0) 推荐(0) 编辑