Richard Hightower
Richard Hightower
are you offering to send a pull request?
UPDATE In the middle are supported btw. Just unique bases are supported. This does not work: ``` java @RequestMapping(value = "/abc/{id}/foo", method = RequestMethod.PUT) void methodA(@PathVariable("id") int id) {} @RequestMapping(value...
Basically this will work ``` java @RequestMapping(value = "/abc/{id}/def", method = RequestMethod.PUT) void methodA(@PathVariable("id") int id) {} ``` as long as you did not also define this ``` java @RequestMapping(value...
You don’t have to use request params. (caps are for emphasis not yelling) This will WORK: ``` /tools/dimensions/{toolId} /tools/query/{toolId} ``` As long as you don’t have the same root URI,...
Tried to review this. Checked out the branch, and the WebSocket tests were failing. There were 13 WebSocket tests that are failing.
Yep. I got the same error. 2.7 GHz 12-Core Intel Xeon E5. Mac OS Monterey. Graphics card AMD FirePro D500 3 GB. BTW What does the installer do? It ran...
Thanks.
Send me your code, and I can help you. ``` java JsonFactory.fromJson(content, MyObject.class); ``` The above is used for convenience.
https://github.com/RichardHightower/json-parsers-benchmark On Wed, Jan 6, 2016 at 4:35 AM, Laurent [email protected] wrote: > Hi, > > I can't really give you any code without having to create some specific >...
I like this idea. I am going to keep the core small. https://github.com/advantageous/konf-typesafe-config (this exists) used to use typesafe config with Konf https://github.com/advantageous/konf-yaml-beans (this does not) going to write this...