uk.co.caeldev.spring.moprhia.MorphiaSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-morphia Show documentation
Show all versions of spring-morphia Show documentation
A Commons Library to provide moprhia configuration
package uk.co.caeldev.spring.moprhia;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix="morphia")
public class MorphiaSettings {
private String entityPackage;
public String getEntityPackage() {
return entityPackage;
}
public void setEntityPackage(String entityPackage) {
this.entityPackage = entityPackage;
}
}