Package com.sishuok.spring3

Source Code of com.sishuok.spring3.EnvironmentTest

package com.sishuok.spring3;

import org.junit.Test;
import org.springframework.core.env.Environment;
import org.springframework.core.env.StandardEnvironment;

/**
* <p>User: Zhang Kaitao
* <p>Date: 13-12-23
* <p>Version: 1.0
*/
public class EnvironmentTest {

    @Test
    public void test() {
        //会自动注册 System.getProperties() 和 System.getenv()
        Environment environment = new StandardEnvironment();
        System.out.println(environment.getProperty("file.encoding"));
        System.out.println(environment.getProperty("data"));


    }
}
TOP

Related Classes of com.sishuok.spring3.EnvironmentTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.