The current DubboProperties uses Javadoc tags (such as {@link}) in field descriptions. The annotation processor doesn't clean those and write the description as is in the metadata. This is not recommended as described in the documentation:
You should only use simple text with @ConfigurationProperties field Javadoc, since they are not processed before being added to the JSON.
Please clean those. More generally, using an IDE and acting as a user to check if the property name and description makes sense is always best.
The current
DubboProperties
uses Javadoc tags (such as{@link}
) in field descriptions. The annotation processor doesn't clean those and write the description as is in the metadata. This is not recommended as described in the documentation:Please clean those. More generally, using an IDE and acting as a user to check if the property name and description makes sense is always best.