We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fdaebd commit cba0c51Copy full SHA for cba0c51
tests/test-nima/src/main/java/org/example/HelloController.java
@@ -15,7 +15,7 @@ String helloWorld() {
15
Person person(String name, String sortBy) {
16
var p = new Person();
17
p.setId(42);
18
- p.setName("asdasd");
+ p.setName(name + " hello" + " sortBy:" + sortBy);
19
return p;
20
}
21
tests/test-nima/src/main/java/org/example/Main.java
@@ -22,8 +22,8 @@ public static void main(String[] args) {
22
23
24
WebServer.builder()
25
- //.addRouting(httpRouting)
26
- .routing(Main::routing)
+ .addRouting(httpRouting)
+ //.routing(Main::routing)
27
.port(8081)
28
.start();
29
0 commit comments