How to write * / in javadoc

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?

+3
source share
1 answer

You can avoid *how &#42;or /how&#47;

+4
source

Source: https://habr.com/ru/post/1795272/


All Articles