All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 baseInterface != "JpaRepository">
import org.springframework.data.repository.${baseInterface};
<#else>
import org.springframework.data.jpa.repository.${baseInterface};


/**
 *
 * @author ${user}
 */
public interface ${name} extends ${baseInterface}<${entityClass}, ${idClass}> {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy