摘要:
原因是在引入Element-Plus的顺序在vue之前导致,重新调整下他们的顺序后,问题解决。 import App from './App.vue' import { setupI18n } from '/@/i18n' import { setupRouter } from '/@/router 阅读全文
2023年11月29日 #
2023年8月12日 #
摘要:
在配置号eureka注册中心后,启动前端页面时出现: 前端页面: FreeMarker template error (DEBUG mode; use RETHROW in production!): The following has evaluated to null or missing: = 阅读全文
2023年7月15日 #
摘要:
将用户名位置更改为root即可 阅读全文
2023年7月10日 #
摘要:
application.properties文件内容 pig.id=11 pig.name=GGBond Pig类 @Component @ConfigurationProperties(prefix = "pig")//prefix表示前缀,将前缀是pig的值绑定 public class Pig 阅读全文
2023年7月9日 #
摘要:
当时我在练习时添加的springBoot项目的版本为: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.1.1</v 阅读全文
2023年7月5日 #
摘要:
检查配置文件是否扫描了该文件。 <!--开启组件扫描--> <context:component-scan base-package="xxx"></context:component-scan> 阅读全文
2023年6月28日 #
摘要:
刚开始一直查找关于第一行的错误,发现一直没有找到相关的解决方案。在看完log之后,在log中间位置发现另一个错误: Failed to introspect Class [org.springframework.aop.aspectj.AspectJExpressionPointcut] from 阅读全文
摘要:
原因时你的properties资源文件中命名和spring关键字冲突 username=root password=root url=jdbc:mysql://localhost:3306/spring driver=com.mysql.cj.jdbc.Driver 换成下面的方法即可解决 jdbc 阅读全文
摘要:
原因是导入的Test的包不对,需要导入 import org.junit.jupiter.api.Test; 阅读全文
摘要:
解决方案,添加相关依赖 <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactI 阅读全文