2016-05-10 113 views

回答

2

您可以使用主要是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 
3

這應該工作 @RequestMapping("${test.str.value}")並在application.proprties/ymltest.str.value = /test

相關問題