Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'xxl.job.admin.addresses' in value "${xxl.job.admin.addresses}"
时间: 2023-12-12 14:04:12 浏览: 224
这个错误是因为在你的代码中使用了 Spring 的占位符 "${xxl.job.admin.addresses}",但是没有在配置文件中定义该占位符的值。你需要在配置文件中添加对应的属性及其值,例如:
```
xxl.job.admin.addresses=http://localhost:8080/xxl-job-admin
```
这样就能解决这个错误了。
相关问题
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'fileServerUrl' in value "${fileServerUrl}"
这个报错是由于无法解析占位符 'fileServerUrl' 导致的。解决方法是检查配置文件中是否正确配置了 'fileServerUrl' 的值。
以下是两种可能的解决方法:
1. 检查配置文件中是否正确配置了 'fileServerUrl' 的值:
```properties
fileServerUrl=http://example.com/file-server
```
2. 检查是否正确加载了配置文件:
```java
@Value("${fileServerUrl}")
private String fileServerUrl;
```
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'consumingTime' in value "${consumingTime}"
这个错误是由于你的代码中使用了一个占位符(placeholder),但是没有为这个占位符提供一个有效的值。在这种情况下,占位符的名称是"consumingTime",但是没有为它提供一个值。为了解决这个问题,你需要确保你的代码中有一个有效的值来替换这个占位符。
阅读全文