We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如果我的 controller 里面的 url 如下写法抽离到常量中:
@GetMapping(Url.Factor.ACCT_BP_FACTOR) public ApiResponse<BpFactorUpdateVO> getAcctBp(String finAccountId){ }
点击🚀,无法读取里实际的 url,直接原封不动的取到常量原值
虽然有 url replace config,但是对于这种似乎不太适用,不可能把所有的录入,idea plugin sdk 是无法读取到对应常量的实际值吗?
public interface Url { interface Factor { String ACCT_BP_FACTOR = "xxx"; } }
The text was updated successfully, but these errors were encountered:
Will be improved in V2.1.2
Sorry, something went wrong.
No branches or pull requests
如果我的 controller 里面的 url 如下写法抽离到常量中:
点击🚀,无法读取里实际的 url,直接原封不动的取到常量原值
虽然有 url replace config,但是对于这种似乎不太适用,不可能把所有的录入,idea plugin sdk 是无法读取到对应常量的实际值吗?
The text was updated successfully, but these errors were encountered: