You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
452 B
Java
19 lines
452 B
Java
package com.weaver.custom.configcenter;
|
|
|
|
import com.weaver.framework.client.annotation.WeaverConfigCenter;
|
|
import lombok.Data;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Data
|
|
@Component
|
|
@WeaverConfigCenter(sources = {
|
|
@WeaverConfigCenter.ConfigProperty(
|
|
dataId = "weaver-secondev-htwsaccount.properties",
|
|
group = "DEFAULT_GROUP",
|
|
refresh = "true")
|
|
})
|
|
public class htwsaccountConfig {
|
|
|
|
|
|
}
|