removing the default value from the @Value annotation, seems like is not

working overwriting the default value with profiles. Removing the
default value, it is possible again to overwrite the default value
again.
This commit is contained in:
Michael Hirsch
2016-01-28 10:35:26 +01:00
parent 9d21ee672a
commit a27a770b6a

View File

@@ -31,7 +31,7 @@ public class SecurityProperties {
@Value("${hawkbit.server.controller.security.rp.trustedIPs:#{null}}")
private List<String> rpTrustedIPs;
@Value("${hawkbit.server.controller.security.authentication.anonymous.enabled:false}")
@Value("${hawkbit.server.controller.security.authentication.anonymous.enabled}")
private Boolean anonymousEnabled;
public String getRpCnHeader() {