simpler handler works okay: ```@RequestMapping(met...
# jackson-kotlin
c
simpler handler works okay:
Copy code
@RequestMapping(method = arrayOf(<http://RequestMethod.POST|RequestMethod.POST>), value = "a")
	fun dummy(@RequestBody host: Host): Host {
		return host
	}