如何在Spring-Boot @RequestMapping("/test")
中傳遞字符串值。Spring Boot如何在@requestMapping中傳遞配置/動態url?
我想通過String str ="/test"
作爲RequestMapping(str)
中的字符串值,請建議如何讀取請求映射中的字符串值。
如何在Spring-Boot @RequestMapping("/test")
中傳遞字符串值。Spring Boot如何在@requestMapping中傳遞配置/動態url?
我想通過String str ="/test"
作爲RequestMapping(str)
中的字符串值,請建議如何讀取請求映射中的字符串值。
您可以使用主要是2個opions:
選項1:
@RequestMapping("/{pathVariable}/yourUrl")
public void yourRequestMethod(@PathVariable("pathVariable")String pathVariable){...}
而且你應該建立這樣的要求:
/yourValue/yourUrl
選項2:
@RequestMapping("/yourUrl")
public void yourRequestMethod(@RequestParam("test")String test){...}
而你呢LD建立這樣的要求:
/yourUrl?test=yourValue
這應該工作 @RequestMapping("${test.str.value}")
並在application.proprties/yml
test.str.value = /test
你能驗證迴應?可能對其他成員有用,謝謝! – cralfaro