Possible duplicate:
How to quote "* /" in JavaDocs
I want to put the following method in a method:
Route example:
<code>
get("/users/*/{id}") -> UsersController.show(id)
</code>
But since there is code in the */javadoc will break into this position, the java code cannot be compiled.
How to solve this?
source
share