TestProperties.java 334 字节
Newer Older
武汉红喜's avatar
武汉红喜 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package org.hongxi.whatsmars.boot.sample.beans;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

import java.util.Map;

/**
 * Created by shenhongxi on 2020/7/17.
 */
@Data
@ConfigurationProperties(prefix = "test")
public class TestProperties {

    private Map<String, String> map;
}