弹簧引导Cloug配置客户端无法自动装配

时间:2019-02-02 22:28:31

标签: java spring-boot jdbc spring-cloud-config

我在这里遵循了一个教程:https://www.jianshu.com/p/2ef6a9259112

我无法自动连接数据库中的密钥。

 @RefreshScope
 @RestController
 public class MainController {
@Value("${key}")
private String sql;

@Autowired
private DataSource dataSource;

@RequestMapping("/showConfig")
@ResponseBody
public String showConfig() {
    String configInfo = "sql key-value pair" + sql;
return configInfo;
}

客户端bootstrap.properties:

spring.application.name=config-client

# This is the default:
spring.cloud.config.uri=http://localhost:8888
management.security.enabled=false

spring.cloud.config.label=master
spring.cloud.config.profile=test
server.port=7777

服务器属性

server.port=8888
spring.datasource.url=jdbc:mariadb://localhost:3306/noob? 
createDatabaseIfNotExist=true
spring.datasource.username=root
spring.datasource.password=abc123
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.datasource.platform= mysql
spring.datasource.hikari.connection-timeout=5000
spring.datasource.hikari.maximum-pool-size=10

spring.profiles.active= jdbc

spring.jpa.hibernate.ddl-auto=create-drop
spring.cloud.config.server.default-profile=production
spring.cloud.config.server.default-label=latest

spring.cloud.config.server.jdbc.sql=SELECT `key`, `value` FROM `properties` 
WHERE `application`=? AND `profile`=? AND `label`=?;
spring.cloud.config.server.jdbc.order=0

我的noob数据库中有这些表:

CREATE TABLE `properties` (
  `application` varchar(200) DEFAULT NULL,
  `profile` varchar(200) DEFAULT NULL,
  `label` varchar(200) DEFAULT NULL,
  `key` varchar(200) DEFAULT NULL,
  `value` varchar(200) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1

INSERT INTO `properties` (`key`, `value`, `application`, `profile`, 
`label`)
VALUES ('datasource-driver-class- 
name','MyDriverClass','appplication1','production','latest');

org.springframework.beans.factory.BeanCreationException:创建名称为'scopedTarget.mainController'的bean时出错:自动连接依赖项的注入失败;嵌套的例外是java.lang.IllegalArgumentException异常:无法解析占位符 'key' 中值 “$ {key}”     在org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:380)〜[spring-beans-5.1.4.RELEASE.jar:5.1.4.RELEASE]     在 ...     ...省略了28个常见框架

1 个答案:

答案 0 :(得分:0)

在学习完本教程之后,并在提供输入信息的情况下,您可以期望一些@Value的使用:

@Value("${datasource-driver-class-name}")
private transient String driverClassName;

  

我接受了你的建议。我相信它应该工作。我希望我的结果是MyDriverClass,但出现另一个错误。 “在com.example.demo.MainController中的字段dataSource需要一个类型为'javax.sql.DataSource'的bean,无法找到。”


..然后,您使用“ maria”,在本教程中使用“ mysql”数据库时,请调整相应的maven依赖项:

pom.xml:

<!-- dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
</dependency -->
<dependency>
    <groupId>org.mariadb.jdbc</groupId>
    <artifactId>mariadb-java-client</artifactId>
    <!-- version>1.1.7</version -->
</dependency>