diff --git a/tests/test-nima-jsonb/src/main/java/org/example/HelloController.java b/tests/test-nima-jsonb/src/main/java/org/example/HelloController.java index 95d7ea403..515ae0852 100644 --- a/tests/test-nima-jsonb/src/main/java/org/example/HelloController.java +++ b/tests/test-nima-jsonb/src/main/java/org/example/HelloController.java @@ -1,5 +1,6 @@ package org.example; +import java.math.BigInteger; import java.util.List; import java.util.Map; import java.util.Set; @@ -149,8 +150,8 @@ String formBean(MyForm form) { return form.name + "|" + form.email + "|" + form.url; } -// @Get("/bigInt/{val}") -// String testBigInt(BigInteger val) { -// return "hi|" + val; -// } + @Get("/bigInt/{val}") + String testBigInt(BigInteger val, BigInteger someQueryParam) { + return "hi|" + val; + } }