spring导入properties配置文件

2021-03-24 01:27

阅读:612

标签:set   配置到   lan   his   http   utf-8   配置文件   oid   编写   

spring导入properties配置文件

将外部属性文件的数据配置到bean的配置文件,依赖于context标签下的property-placeholder标签

1、准备properties文件

url=jdbc:mysql://localhost:3306/hibernate_db 
username=root 
password=1111

2、编写对应实体类

package com.yl.bean;

public class DataSource {
    private String url;
    private String username;
    private String password;

    public DataSource() {
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    @Override
    public String toString() {
        return "DataSource{" +
                "url=‘" + url + ‘\‘‘ +
                ", username=‘" + username + ‘\‘‘ +
                ", password=‘" + password + ‘\‘‘ +
                ‘}‘;
    }
}

3、spring配置文件

4、测试

package com.yl;

import com.yl.bean.DataSource;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainTest {

    public static void main(String[] args) {
        ApplicationContext applicationContext=new ClassPathXmlApplicationContext("bean1.xml");

        DataSource dataSource= (DataSource) applicationContext.getBean("dataSource");

        System.out.println(dataSource);
    }

}

spring导入properties配置文件

标签:set   配置到   lan   his   http   utf-8   配置文件   oid   编写   

原文地址:https://www.cnblogs.com/Y-wee/p/13822205.html


评论


亲,登录后才可以留言!