4 changed files with 165 additions and 0 deletions
@ -0,0 +1,75 @@
@@ -0,0 +1,75 @@
|
||||
/* |
||||
* Copyright 2012-2018 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.configurationsample.simple; |
||||
|
||||
import java.util.Map; |
||||
|
||||
import org.springframework.boot.configurationsample.ConfigurationProperties; |
||||
|
||||
/** |
||||
* Properties with array. |
||||
* |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
@ConfigurationProperties("array") |
||||
public class SimpleArrayProperties { |
||||
|
||||
private int[] primitive; |
||||
|
||||
private String[] simple; |
||||
|
||||
private Holder[] inner; |
||||
|
||||
private Map<String, Integer>[] nameToInteger; |
||||
|
||||
public int[] getPrimitive() { |
||||
return this.primitive; |
||||
} |
||||
|
||||
public void setPrimitive(int[] primitive) { |
||||
this.primitive = primitive; |
||||
} |
||||
|
||||
public String[] getSimple() { |
||||
return this.simple; |
||||
} |
||||
|
||||
public void setSimple(String[] simple) { |
||||
this.simple = simple; |
||||
} |
||||
|
||||
public Holder[] getInner() { |
||||
return this.inner; |
||||
} |
||||
|
||||
public void setInner(Holder[] inner) { |
||||
this.inner = inner; |
||||
} |
||||
|
||||
public Map<String, Integer>[] getNameToInteger() { |
||||
return this.nameToInteger; |
||||
} |
||||
|
||||
public void setNameToInteger(Map<String, Integer>[] nameToInteger) { |
||||
this.nameToInteger = nameToInteger; |
||||
} |
||||
|
||||
public static class Holder { |
||||
|
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,52 @@
@@ -0,0 +1,52 @@
|
||||
/* |
||||
* Copyright 2012-2018 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.configurationsample.specific; |
||||
|
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
import org.springframework.boot.configurationsample.ConfigurationProperties; |
||||
|
||||
/** |
||||
* Demonstrate properties with a wildcard type. |
||||
* |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
@ConfigurationProperties("wildcard") |
||||
public class WildcardConfig { |
||||
|
||||
private Map<String, ? extends Number> stringToNumber; |
||||
|
||||
private List<? super Integer> integers; |
||||
|
||||
public Map<String, ? extends Number> getStringToNumber() { |
||||
return this.stringToNumber; |
||||
} |
||||
|
||||
public void setStringToNumber(Map<String, ? extends Number> stringToNumber) { |
||||
this.stringToNumber = stringToNumber; |
||||
} |
||||
|
||||
public List<? super Integer> getIntegers() { |
||||
return this.integers; |
||||
} |
||||
|
||||
public void setIntegers(List<? super Integer> integers) { |
||||
this.integers = integers; |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue