读取properties配置

时间:2024-5-9    作者:老大夫    分类: JAVA


properties不单是配置文件,而是一个集合类型

读取配置文件时就使用这个集合,将配置信息以键值对的形式读取进来。

例如:JDBC 数据库连接池读取配置时 需要先建一个properties集合然后用这个properties读取信息。

举例: Ddruid的引入properties配置文件


@Test
            public void testResourcesDruid() throws Exception {
                //1.创建Properties集合,用于存储外部配置文件的key和value值。
                Properties properties = new Properties();

                //2.读取外部配置文件,获取输入流,加载到Properties集合里。
                InputStream inputStream = DruidTest.class.getClassLoader().getResourceAsStream("db.properties");
                properties.load(inputStream);

                //3.基于Properties集合构建DruidDataSource连接池
                DataSource dataSource = DruidDataSourceFactory.createDataSource(properties);

                //4.通过连接池获取连接对象
                Connection connection = dataSource.getConnection();
                System.out.println(connection);

                //5.开发CRUD

                //6.回收连接
                connection.close();
            }


扫描二维码,在手机上阅读

推荐阅读: