Multiple annotations of the same type on one element?

前端 未结 8 1283
再見小時候
再見小時候 2020-11-30 21:39

I\'m attempting to slap two or more annotations of the same type on a single element, in this case, a method. Here\'s the approximate code that I\'m working with:

         


        
8条回答
  •  时光取名叫无心
    2020-11-30 22:30

    Repeating annotations in Java 8

    In Java 8 (released in March 2014), it is possible to write repeated/duplicate annotations.

    See tutorial, Repeating Annotations.

    See specification, JEP 120: Repeating Annotations.

提交回复
热议问题