I have a lot of entity classes organized in subpackages of a base one.
can i somehow use the @EntityScan Annotation to scan for them recursively?
Per Example
package org.example.entity.letters
class A {}
class B {}
package org.example.entity.nums
class One {}
class Two {}
currently im specifying every subpackage explicitly
@EntityScan(basePackages={"org.example.entity.letters","org.example.entity.nums"})
is there a way to make this simpler?
like: (just imaginary)
@EntityScanRecursive("org.example.entity")