gpt4 book ai didi

java - 请求带有斜杠的映射占位符

转载 作者:行者123 更新时间:2023-11-29 06:41:16 25 4
gpt4 key购买 nike

我想实现以下几点:

@RequestMapping( "/archive/{date}.html" ) // e.g. /archive/2012/08.html
public String listByDate( @PathVariable( "date" ) @DateTimeFormat( iso = ISO.DATE, pattern = "yyyy/MM" ) Calendar cal, ... )

但我刚收到 404。

我想这是因为我试图在 {date} 占位符之间使用斜线?

我需要在这里做什么?

最佳答案

为什么不将 {date} 拆分为 {year}/{month}

@RequestMapping( "/archive/{year}/{month}.html" )
public String listByDate( @PathVariable( "year" )...

关于java - 请求带有斜杠的映射占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11769119/

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