gpt4 book ai didi

spring-boot - Spring Boot 请求映射最佳实践

转载 作者:行者123 更新时间:2023-12-01 21:50:26 25 4
gpt4 key购买 nike

我一直在研究 Spring Boot,在我完成的教程中,请求映射是这样给出的:

@GetMapping("/hello")

如果映射在别处被引用,则通过重复相同的字符串来完成:

.antMatchers("/hello").permitAll()

我觉得这可能会在较大的应用程序中变得困惑,所以我想知道是否“每个人”都在做一些事情来组织它并避免重复字符串以及拼写错误等问题。

最佳答案

你可以像这样组织你的 URL

    public class UrlConstant {

public static final String ID_PLACEHOLDER = "/{id}";

public static class HelloUrl {

public static final String URL = "/hello";

public static class Path {

public static final String TEST = "/test";

}

public static class QueryParam {

public static final String PARAM1 = "param";

}
}

}

关于spring-boot - Spring Boot 请求映射最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59542556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com