Yanming Zhou

Results 247 comments of Yanming Zhou
trafficstars

FYI, I'm implementing this by introducing a customized `@PriorityQualifier` ```java import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target({ ElementType.FIELD, ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) public @interface PriorityQualifier { String[] value() default...

> Annotating _someNewTypeBean_ with `@javax.annotation.Priority` to tweak the priority should do the trick. > > Edit: Args, `@Priority` cannot be declared on methods. So you need to use a component......

@gregturn Maybe regression introduced by https://github.com/spring-projects/spring-data-jpa/pull/2461.

> is this still broken with 2.7.3? we downgraded to 2.6.8, waiting for the fix. It should fixed in 2.7.3, but it's not released yet. @gregturn

I vote for option 2 if performance is not an issue.

Verified with 11.0.1 (20B29)

> > Verified with 11.0.1 (20B29) > > is it worked ? Bug verified, hehe.

https://github.com/eclipse/buildship/blob/35d01caad3ab023fdd9fdf4a1b9e9c738bff7fd0/org.eclipse.buildship.core/src/main/java/org/eclipse/buildship/core/internal/workspace/DefaultWorkspaceOperations.java#L367-L369 I'm using a vanilla `Eclipse IDE for Java Developers`, It contains bundle `org.eclipse.wst.common.core`, more bundle detections should be added here.

> I upgraded gradle to nightly build of 7.2 and the issue is gone: > `./gradlew wrapper --gradle-version=7.2-20210619231202+0000` > > so it seems to be a bug in 7.1 which...