io.github.xiejx618.replace.ReplaceProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of replace-bean-boot-starter Show documentation
Show all versions of replace-bean-boot-starter Show documentation
Implement the function of replacing spring beans.
The newest version!
package io.github.xiejx618.replace;
/**
* 替换配置类
*/
public class ReplaceProperties {
/**
* 是否启用
*/
private boolean enabled = true;
/**
* 扫描包
*/
private String packages;
/**
* 工厂类
*/
private String factories;
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public String getPackages() {
return packages;
}
public void setPackages(String packages) {
this.packages = packages;
}
public String getFactories() {
return factories;
}
public void setFactories(String factories) {
this.factories = factories;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy