我想在 Java 中實(shí)現(xiàn)一個(gè)帶有“重載”端點(diǎn)的 REST API,該端點(diǎn)因傳遞的查詢參數(shù)而異。我在我的控制器類中嘗試過這段代碼:@Get("/query")public MyResponse queryByDate(@QueryValue @Valid @Format("yyyy-MM-dd") Date date) { // Code to generate the response return retval;}@Get("/query")public MyResponse queryByDateAndValue(@QueryValue @Valid @Format("yyyy-MM-dd") Date date, @QueryValue int value) { // Code to generate the response return retval;}這將返回以下錯(cuò)誤:More than 1 route matched the incoming request. The following routes matched /calendar/years/query: GET - /calendar/years/query, GET - /calendar/years/queryio.micronaut.web.router.exceptions.DuplicateRouteException: More than 1 route matched the incoming request. The following routes matched /calendar/years/query: GET - /calendar/years/query, GET - /calendar/years/query請注意,如果我刪除其中一種方法,其余方法將按預(yù)期工作。如何將具有不同查詢參數(shù)的端點(diǎn)映射到控制器中的 2 個(gè)不同方法?這可能嗎?
1 回答

倚天杖
TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊
您收到錯(cuò)誤是因?yàn)閮蓚€(gè)端點(diǎn)具有相同的路徑,并且它會(huì)混淆編譯器將 API 映射到相應(yīng)的路徑。傳遞查詢參數(shù)并不意味著端點(diǎn)具有不同的路徑。您可以將這兩個(gè)端點(diǎn)合二為一:
@Get("/query")
public MyResponse queryByDateAndValue(@QueryValue @Valid @Format("yyyy-MM-dd") Date date,@DefaultValue("1") @QueryValue int value) {
// Code to generate the response
return retval;
}
并設(shè)置默認(rèn)值value。然后您可以相應(yīng)地分開您的案例。
添加回答
舉報(bào)
0/150
提交
取消