欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

在SpringBoot项目中实现给所有请求加固定前缀

时间:2022-11-12 10:13:04|栏目:JAVA代码|点击:

给所有请求加个固定前缀

在开发中,可能会遇到需要配置项目前缀的问题,虽然我们可以在Controller控制器方法中给所有请求加前缀,但是不仅比较麻烦,而且在某种环境下是没什么用处,形同虚设

接下来,教你在配置文章中只需短短一小行代码配置即可生效

知识小锦囊

在yml配置文件中加入配置:

server.servlet.context-path: /需要设置的路径前缀

再重启测试即可生效

配置文件读取(固定前缀)

1.配置文件所有固定前缀的都可以使用

SpringBoot自动注入实体类如下配置

配置文件:application.properties

固定前缀: sys.test.config

配置信息:

sys.test.config.industryKey=aaa
sys.test.config.systemName=bbb
sys.test.config.downloadUrl=ccc
sys.test.config.traceDomain=ddd

2.SpringBoot实体类

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
@Component
@ConfigurationProperties(prefix = "sys.test.config")
public final class ResourceContainer { 
    private String industryKey;    
    private String systemName;    
    private String downloadUrl;    
    private String traceDomain;    
    public String getIndustryKey() {
        return industryKey;
    }
 
    public void setIndustryKey(String industryKey) {
        this.industryKey = industryKey;
    }
 
    public String getSystemName() {
        return systemName;
    }
 
    public void setSystemName(String systemName) {
        this.systemName = systemName;
    }
 
    public String getDownloadUrl() {
        return downloadUrl;
    }
 
    public void setDownloadUrl(String downloadUrl) {
        this.downloadUrl = downloadUrl;
    }
 
    public String getTraceDomain() {
        return traceDomain;
    }
 
    public void setTraceDomain(String traceDomain) {
        this.traceDomain = traceDomain;
    }
}

3.使用方式

@Autowired
private ResourceContainer resourceContainer;

上一篇:关于springboot2整合lettuce启动卡住问题的解决方法

栏    目:JAVA代码

下一篇:java 汉诺塔Hanoi递归、非递归(仿系统递归)和非递归规律 实现代码

本文标题:在SpringBoot项目中实现给所有请求加固定前缀

本文地址:http://www.codeinn.net/misctech/218832.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有