
com.github.alexfalappa.nbspringboot.templates.repository.Repository.template Maven / Gradle / Ivy
<#assign licenseFirst = "/*">
<#assign licensePrefix = " * ">
<#assign licenseLast = " */">
<#include "${project.licensePath}">
<#if package?? && package != "">
package ${package};
#if>
<#if baseInterface != "JpaRepository">
import org.springframework.data.repository.${baseInterface};
<#else>
import org.springframework.data.jpa.repository.${baseInterface};
#if>
/**
*
* @author ${user}
*/
public interface ${name} extends ${baseInterface}<${entityClass}, ${idClass}> {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy