
org.swiftboot.data.config.SwiftBootDataConfigBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swiftboot-data Show documentation
Show all versions of swiftboot-data Show documentation
Data access component based on Spring-Data-JPA
package org.swiftboot.data.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
import org.springframework.context.annotation.Configuration;
/**
* @author swiftech
**/
@Configuration
@ConfigurationProperties("swiftboot.data")
public class SwiftBootDataConfigBean {
/**
* Model 配置
*/
@NestedConfigurationProperty
private ModelConfigBean model = new ModelConfigBean();
public ModelConfigBean getModel() {
return model;
}
public void setModel(ModelConfigBean model) {
this.model = model;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy