templates.projection_template.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamic-repository Show documentation
Show all versions of dynamic-repository Show documentation
Simple annotation processor which can generate JpaRepository interfaces.
The newest version!
package ${packageName};
import org.springframework.data.domain.Pageable;
public interface ${simpleClassName} {
#foreach( $method in $methods )
${method.parameters} ${method.methodName}();
#end
}