• Spring之引入外部的属性配置文件



    前言

    将信息单独写到一个属性配置文件中,这样用户修改起来会更加方便


    一、引入外部的属性配置文件

    1.1、写一个数据源类

    MyDataSource:

    public class MyDataSource implements DataSource {
        private String driver;
        private String url;
        private String username;
        private String password;
    
        public void setDriver(String driver) {
            this.driver = driver;
        }
    
        public void setUrl(String url) {
            this.url = url;
        }
    
        public void setUsername(String username) {
            this.username = username;
        }
    
        public void setPassword(String password) {
            this.password = password;
        }
    
        @Override
        public String toString() {
            return "MyDataSource{" +
                    "driver='" + driver + '\'' +
                    ", url='" + url + '\'' +
                    ", username='" + username + '\'' +
                    ", password='" + password + '\'' +
                    '}';
        }
    
        public MyDataSource() {
            super();
        }
    
        @Override
        public int hashCode() {
            return super.hashCode();
        }
    
        @Override
        public boolean equals(Object obj) {
            return super.equals(obj);
        }
    
        @Override
        protected Object clone() throws CloneNotSupportedException {
            return super.clone();
        }
    
        @Override
        protected void finalize() throws Throwable {
            super.finalize();
        }
    
        @Override
        public Connection getConnection() throws SQLException {
            return null;
        }
    
        @Override
        public Connection getConnection(String username, String password) throws SQLException {
            return null;
        }
    
        @Override
        public <T> T unwrap(Class<T> iface) throws SQLException {
            return null;
        }
    
        @Override
        public boolean isWrapperFor(Class<?> iface) throws SQLException {
            return false;
        }
    
        @Override
        public PrintWriter getLogWriter() throws SQLException {
            return null;
        }
    
        @Override
        public void setLogWriter(PrintWriter out) throws SQLException {
    
        }
    
        @Override
        public void setLoginTimeout(int seconds) throws SQLException {
    
        }
    
        @Override
        public int getLoginTimeout() throws SQLException {
            return 0;
        }
    
        @Override
        public Logger getParentLogger() throws SQLFeatureNotSupportedException {
            return null;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101

    1.2、写spring配置文件

        引入外部的properties文件
            第一步:引入context命名空间 xmlns:context="http://www.springframework.org/schema/context"
            第二步:使用标签的location属性来指定属性配置文件的路径
        配置数据源:一般会使用${jdbc.username} 而不是直接${username},会有一点小bug,会调用到系统的username:Adminstrator
    
    • 1
    • 2
    • 3
    • 4
    
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:context="http://www.springframework.org/schema/context"
           xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
        
        <context:property-placeholder location="db.properties">context:property-placeholder>
    
        
        <bean id="dataSourceBean" class="com.powernode.spring6.bean.MyDataSource">
            <property name="driver" value="${jdbc.driver}">property>
            <property name="url" value="${jdbc.url}">property>
            <property name="username" value="${jdbc.username}">property>
            <property name="password" value="${jabc.password}">property>
        bean>
    beans>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    1.3、写测试程序

        @Test
        public void testProperties(){
            ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-properties.xml");
            MyDataSource ds = applicationContext.getBean("dataSourceBean", MyDataSource.class);
            System.out.println(ds);
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    1.4、运行结果

    运行结果
    在这里插入图片描述

  • 相关阅读:
    基于SSM的医院科室人员管理系统
    SpringBoot异常处理机制之自定义404、500错误提示页面
    被一个问题卡了近两天,下班后我哭了......
    10kv后台配电监控系统
    【Spring Boot】拦截器学习笔记
    使用kubectl管理Kubernetes(k8s)集群:常用命令,查看负载,命名空间namespace管理
    小程序提示没有找到可以构建的NPM包解决方法
    【R语言数据科学】:机器学习常见评估指标
    特殊SQL的执行(模糊查询、批量删除、动态设置表名、添加功能获取自增的主键)
    【Rust日报】2023-09-05 cargo-audit 0.18 版本 - 性能、兼容性和安全性改进
  • 原文地址:https://blog.csdn.net/qq_42338744/article/details/127928121