Add support for property deprecation
Previously, an item could only have a 'deprecated' boolean flag to indicate that the property is deprecated. It is desirable to provide an additional description for the deprecation as well as the name of the property to use instead. The `deprecated` boolean flag is now supported. Instead, a `deprecated` object can be specified with two optional attributes: `reason` to provide an explanation for the deprecation and `replacement` to refer to the property that should be used instead. If none of them is present, an empty deprecation object should be set. For backward compatibility, the `deprecated` field is still set. Deprecation information can only set via manual meta-data. Closes gh-3449pull/3504/merge
parent
b1e9139efe
commit
f2d32d3e98
@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012-2015 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.boot.configurationmetadata;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicate that a property is deprecated. Provide additional information about the
|
||||||
|
* deprecation.
|
||||||
|
*
|
||||||
|
* @author Stephane Nicoll
|
||||||
|
* @since 1.3.0
|
||||||
|
*/
|
||||||
|
public class Deprecation {
|
||||||
|
|
||||||
|
private String reason;
|
||||||
|
|
||||||
|
private String replacement;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A reason why the related property is deprecated, if any. Can be multi-lines.
|
||||||
|
* @return the deprecation reason
|
||||||
|
*/
|
||||||
|
public String getReason() {
|
||||||
|
return reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReason(String reason) {
|
||||||
|
this.reason = reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The full name of the property that replaces the related deprecated property, if any.
|
||||||
|
* @return the replacement property name
|
||||||
|
*/
|
||||||
|
public String getReplacement() {
|
||||||
|
return replacement;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReplacement(String replacement) {
|
||||||
|
this.replacement = replacement;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Deprecation{" + "reason='" + reason + '\'' + ", replacement='" + replacement + '\'' + '}';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"properties": [
|
||||||
|
{
|
||||||
|
"name": "server.port",
|
||||||
|
"type": "java.lang.Integer",
|
||||||
|
"deprecation": {
|
||||||
|
"reason": "Server namespace has moved to spring.server",
|
||||||
|
"replacement": "server.spring.port"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "server.cluster-name",
|
||||||
|
"type": "java.lang.String",
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "spring.server.name",
|
||||||
|
"type": "java.lang.String",
|
||||||
|
"deprecated": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,79 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012-2015 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.boot.configurationprocessor.metadata;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describe an item deprecation.
|
||||||
|
*
|
||||||
|
* @author Stephane Nicoll
|
||||||
|
* @since 1.3.0
|
||||||
|
*/
|
||||||
|
public class ItemDeprecation {
|
||||||
|
|
||||||
|
private String reason;
|
||||||
|
|
||||||
|
private String replacement;
|
||||||
|
|
||||||
|
public ItemDeprecation() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public ItemDeprecation(String reason, String replacement) {
|
||||||
|
this.reason = reason;
|
||||||
|
this.replacement = replacement;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getReason() {
|
||||||
|
return reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReason(String reason) {
|
||||||
|
this.reason = reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getReplacement() {
|
||||||
|
return replacement;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReplacement(String replacement) {
|
||||||
|
this.replacement = replacement;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ItemDeprecation{" + "reason='" + this.reason + '\'' + ", " +
|
||||||
|
"replacement='" + this.replacement + '\'' + '}';
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals(Object o) {
|
||||||
|
if (this == o) return true;
|
||||||
|
if (o == null || getClass() != o.getClass()) return false;
|
||||||
|
|
||||||
|
ItemDeprecation that = (ItemDeprecation) o;
|
||||||
|
|
||||||
|
if (reason != null ? !reason.equals(that.reason) : that.reason != null) return false;
|
||||||
|
return !(replacement != null ? !replacement.equals(that.replacement) : that.replacement != null);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
int result = reason != null ? reason.hashCode() : 0;
|
||||||
|
result = 31 * result + (replacement != null ? replacement.hashCode() : 0);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue