I'm playing around with spring boot, learning spring framework and different libraries like lombok. The problem is that there are no annotation descriptions shown in my IDE (IntellijIDEA Ultimate Edition) when I press Alt + Q or hover mouse over it like in this video. Window pops up, but I see only class / interface basic information.
For example annotation @Service description:
org.springframework.stereotype @Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public interface Service
extends annotation.Annotation
Maven: org.springframework:spring-context:
@Data annotation from video:
lombok @Target({ElementType.TYPE})
@Retention(RetentionPolicy.SOURCE)
public interface Data
extends annotation.Annotation
Maven: org.projectlombok:lombok:1.18.20
How to turn descriptions on ? It helps me to explore annotations without the need to open web browser and I think that it would just be useful in the future.
P.S. It shows me descriptions of methods (System.out.println(), exception.getMessage(), etc.)