
解决方案
哈喽哇德
相信努力就有回报
展开
-
java.sql.SQLException: Access denied for user ‘***‘@‘localhost‘ (using password: YES)
The error may involve com.kun.mapper.UserMapper.getUserThe error occurred while executing a queryCause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is java.sql.SQLException: Access denied原创 2022-03-24 15:54:33 · 2588 阅读 · 1 评论 -
Uncaught ReferenceError: jQuery is not defined at XXX
今天做前端项目发现一个奇怪的bug(我不李姐)在页面检查时发现后来发现在项目里这两句次序颠倒了改后:解决问题。铭记:jquery尽量要往上提!!!!不然代码全是对的但就是没效果的。...原创 2022-03-17 00:56:14 · 848 阅读 · 0 评论 -
springboot启动报错: ‘url‘ attribute is not specified and no embedded datasource could be configured.
Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded datasource could be configured.报错原因:不使用数据库,却导入了jdbc依赖在application.properties/或者application.yml文件中没有添加数据库配置信息.自己粗心,把配置文件放错地方解决方法:把依赖去掉 2. 把配置文件加上3.配置文件要放在resour原创 2022-03-06 13:05:47 · 689 阅读 · 0 评论 -
springboot启动报错 Consider defining a bean of type ‘com.xxx.springboot.mapper.xxxMapper‘ in your con
Description:Field qrcodeMapper in com.xxx.springboot.controller.IppcTpUrlController required a bean of type ‘com.heiban.springboot.mapper.xxxMapper’ that could not be found.The injection point has the following annotations:- @org.springframework.beans.f原创 2022-03-06 11:41:42 · 2407 阅读 · 0 评论 -
解决Android studio:The emulator process for AVD Pixel_3_API_28 has terminated.
参考以下博客:博客1博客2博客3原创 2022-02-24 23:16:05 · 3290 阅读 · 0 评论 -
springboot启动时报错 错误:找不到或无法加载主类 xxx.SpringDemoApplication
解决方法:View->Tool Windows->Terminal 输入命令mvn clean compilemvn installmvn spring-boot:run或者直接在IDE右边的maven里直接clean一下就解决了。原创 2021-11-18 15:04:18 · 952 阅读 · 0 评论 -
(已解决)IDEA创建springboot项目 url 报错
解决方案:直接在后面地址后面加 /用阿里云镜像:https://start.aliyun.com/降版本原创 2021-11-09 20:22:22 · 5543 阅读 · 0 评论 -
记录用maven创建了第一个web项目
记录用maven 创建web工程经过我两个小时的重复测试,期间各种报错,终于…终于…发现问题了。激动…作为一个小白,今天第一次创建了一个maven工程但其中遇到的错误真的很让人头疼,抓狂。错误如下:其一:Process terminated这种情况可能是项目的maven配置文件settings.xml 配置出错,看看自己的配置有没有出错。找到File —> Settings —> Build, Execution, Deployment —> Build Tools —原创 2021-10-25 00:23:40 · 117 阅读 · 0 评论