Is there a way to get the complete path value after the requestMapping @PathVariable values have been parsed?
requestMapping
@PathVariable
这就是: /{id}/{restOfTheUrl}应该可以解析/1/dir1/dir2/file.html成id=1和restOfTheUrl=/dir1/dir2/file.html
/{id}/{restOfTheUrl}
/1/dir1/dir2/file.html
id=1
restOfTheUrl=/dir1/dir2/file.html
任何想法,将不胜感激.
spring spring-mvc request-mapping
request-mapping ×1
spring ×1
spring-mvc ×1