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

com.slyak.spring.SpringJpaExtraProperties Maven / Gradle / Ivy

There is a newer version: 3.3.0.RELEASE
Show newest version
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