XLouis

博客园 首页 新随笔 联系 订阅 管理

2023年11月29日 #

摘要: 原因是在引入Element-Plus的顺序在vue之前导致,重新调整下他们的顺序后,问题解决。 import App from './App.vue' import { setupI18n } from '/@/i18n' import { setupRouter } from '/@/router 阅读全文
posted @ 2023-11-29 14:16 XLouis 阅读(340) 评论(0) 推荐(0) 编辑

2023年8月12日 #

摘要: 在配置号eureka注册中心后,启动前端页面时出现: 前端页面: FreeMarker template error (DEBUG mode; use RETHROW in production!): The following has evaluated to null or missing: = 阅读全文
posted @ 2023-08-12 10:42 XLouis 阅读(320) 评论(0) 推荐(0) 编辑

2023年7月15日 #

摘要: 将用户名位置更改为root即可 阅读全文
posted @ 2023-07-15 14:20 XLouis 阅读(892) 评论(0) 推荐(0) 编辑

2023年7月10日 #

摘要: application.properties文件内容 pig.id=11 pig.name=GGBond Pig类 @Component @ConfigurationProperties(prefix = "pig")//prefix表示前缀,将前缀是pig的值绑定 public class Pig 阅读全文
posted @ 2023-07-10 15:26 XLouis 阅读(70) 评论(0) 推荐(0) 编辑

2023年7月9日 #

摘要: 当时我在练习时添加的springBoot项目的版本为: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.1.1</v 阅读全文
posted @ 2023-07-09 12:40 XLouis 阅读(174) 评论(0) 推荐(0) 编辑

2023年7月5日 #

摘要: 检查配置文件是否扫描了该文件。 <!--开启组件扫描--> <context:component-scan base-package="xxx"></context:component-scan> 阅读全文
posted @ 2023-07-05 09:38 XLouis 阅读(16) 评论(0) 推荐(0) 编辑

2023年6月28日 #

摘要: 刚开始一直查找关于第一行的错误,发现一直没有找到相关的解决方案。在看完log之后,在log中间位置发现另一个错误: Failed to introspect Class [org.springframework.aop.aspectj.AspectJExpressionPointcut] from 阅读全文
posted @ 2023-06-28 19:18 XLouis 阅读(49) 评论(0) 推荐(0) 编辑

摘要: 原因时你的properties资源文件中命名和spring关键字冲突 username=root password=root url=jdbc:mysql://localhost:3306/spring driver=com.mysql.cj.jdbc.Driver 换成下面的方法即可解决 jdbc 阅读全文
posted @ 2023-06-28 07:59 XLouis 阅读(313) 评论(0) 推荐(0) 编辑

摘要: 原因是导入的Test的包不对,需要导入 import org.junit.jupiter.api.Test; 阅读全文
posted @ 2023-06-28 07:42 XLouis 阅读(679) 评论(0) 推荐(0) 编辑

摘要: 解决方案,添加相关依赖 <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactI 阅读全文
posted @ 2023-06-28 07:32 XLouis 阅读(29) 评论(0) 推荐(0) 编辑