
com.slyak.spring.SpringJpaExtraProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-jpa-extra Show documentation
Show all versions of spring-boot-starter-jpa-extra Show documentation
Spring boot starter for spring-boot-starter-jpa-extra
package com.slyak.spring;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* .
*
* @author stormning on 16/6/10.
*/
@ConfigurationProperties(prefix = "spring.jpa.extra")
public class SpringJpaExtraProperties {
private String templateLocation;
private String templateBasePackage;
public String getTemplateLocation() {
return templateLocation;
}
public void setTemplateLocation(String templateLocation) {
this.templateLocation = templateLocation;
}
public String getTemplateBasePackage() {
return templateBasePackage;
}
public void setTemplateBasePackage(String templateBasePackage) {
this.templateBasePackage = templateBasePackage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy