-
Notifications
You must be signed in to change notification settings - Fork 369
Add new parameter-store module and starter #682
Add new parameter-store module and starter #682
Conversation
6336dff
to
39bea17
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@maciejwalkowiak I have added some comments. WDYT?
|
||
ConfigurableEnvironment env = (ConfigurableEnvironment) environment; | ||
|
||
String appName = getName(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should be moved to ParameterStoreProperties
|
||
private String name; | ||
|
||
private String prefix = "/config"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should not have default value. The default one is set in the autoconfigure module
|
||
private String prefix = "/config"; | ||
|
||
private String defaultContext = "application"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should not have default value. The default one is set in the autoconfigure module
Perhaps we can wait with this one for 2.4 |
This commit introduces the following changes: * Deprecate `spring-cloud-aws-parameter-store-config` module * Deperecate `spring-cloud-starter-aws-parameter-store-config` module * Create `spring-cloud-aws-parameter-store` * Create `spring-cloud-starter-aws-parameter-store` New module is not aware of spring boot and the starter has not classes.
8946db9
to
ed79bfe
Compare
I will close this until figure it out #607 |
This commit introduces the following changes:
spring-cloud-aws-parameter-store-config
modulespring-cloud-starter-aws-parameter-store-config
modulespring-cloud-aws-parameter-store
spring-cloud-starter-aws-parameter-store
New module is not aware of spring boot and the starter has not classes.