GH-406 - Improving the detection of Spring AOT classes.

We now inspect the classes for the newly introduced Spring AOT @Generated annotation instead of a name containing a double underscore.
This commit is contained in:
Oliver Drotbohm
2023-12-08 22:15:29 +01:00
parent 4043b2edee
commit c1f5630a72
2 changed files with 9 additions and 4 deletions

View File

@@ -15,10 +15,12 @@
*/
package com.acme.myproject.aot;
import org.springframework.aot.generate.Generated;
/**
*
* @author Oliver Drotbohm
*/
@Generated
public class Spring__Aot {
}