关于后端:springboot-常量设置

32次阅读

共计 654 个字符,预计需要花费 2 分钟才能阅读完成。

1. 在 application.yml 增加常量

content:
basic-url: http://localhost:8088/

2. 在可扫描包的门路下增加对于常量的实体

package com.baomidou.ant.demo.entity;

import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;

@Data
// 注册到 Spring 容器
@Component
// 指定常量资源门路

@ConfigurationProperties("content")
public class Content {
    // 创立相应属性
    // 间接应用注解获取常量值
    private String basicUrl;
}

3. 应用

申明

  @Autowired
    private Content content;

应用
String basicURL=content.getBasicUrl();

注意事项:应用时可能会呈现 Could not autowire,解决办法如 https://segmentfault.com/a/11…

正文完
 0