Spring 是 Java EE 编程领域的一款轻量级的开源框架,自诞生以来备受青睐,一直被广大开发人员作为 Java 企业级应用程序开发的首选,那spring注入properties属性怎么弄?下面来我们就来给大家讲解一下。
一、创建properties文件
示例:
c3p0连接池配置文件-文件名:c3p0.properties
mysql-connector-java-8.0.19.jar
因导入多个属性文件,命名:文件名.属性名=值
c3p0.driverClassName=com.mysql.cj.jdbc.Driver
c3p0.url=jdbc:mysql://localhost:3306/ssm?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8
c3p0.username=root
c3p0.password=root
二、使用步骤
1.引入applicationContext.xml
引入一个:
PropertyPlaceholderConfigurer写法
<!-- 引入一个属性文件方法一 --> <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:c3p0.properties"></property> </bean> context命名空间写法 < !--引入一个属性文件方法二-- > <context:property-placeholder location="classpath:druid.properties" /> 引入多个: PropertyPlaceholderConfigurer写法 < !--引入多个属性文件方法一-- > <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:c3p0.properties</value> <value>classpath:druid.properties</value> </list> </property> </bean>
2.读取数据
代码如下:
$ { 属性名 } <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="driverClass" value="${c3p0.driverClassName}"></property> <property name="jdbcUrl" value="${c3p0.url}"></property> <property name="user" value="${c3p0.username}"></property> <property name="password" value="${c3p0.password}"></property> </bean>
spring如何下载?
Spring 下载地址:https://repo.spring.io/release/org/springframework/spring/
根据操作系统(Windows或Unix)下载相应的 Spring 压缩包。本教程使用版本为 spring-5.3.13-dist.zip(当前最高稳定版本),其目录结构如下:
下面对上图所示的目录进行简单介绍,具体如下所示。
docs:包含 Spring 的 API 文档和开发规范;
libs:包含开发需要的 jar 包和源码包;
schema:包含开发所需要的 schema 文件,在这些文件中定义了 Spring 相关配置文件的约束;
在 libs 目录中,包含了 Spring 框架提供的所有 jar 文件,其中有 4 个 jar 文件是 Spring 框架的基础包,分别对应 Spring 容器的四个模块,具体如下所示。
spring-core-x.x.xx.jar:包含 Spring 框架基本的核心工具类,Spring 其他组件都要用到这个包中的类,是其他组件的基本核心。
spring-beans-x.x.xx.jar:所有应用都要用到的,它包含访问配置文件、创建和管理 Bean 以及进行 Inversion of Control(IoC)或者 Dependency Injection(DI)操作相关的所有类。
spring-context-x.x.xx.jar:Spring 提供在基础 IoC 功能上的扩展服务,此外还提供许多企业级服务的支持,如邮件服务、任务调度、JNDI 定位、EJB 集成、远程访问、缓存以及各种视图层框架的封装等。
spring-expression-x.x.xx.jar:定义了 Spring 的表达式语言。
需要注意的是,在使用 Spring 开发时,除了 Spring 自带的 JAR 包以外,还需要一个第三方 JAR 包 commons.logging 处理日志信息。
使用 Spring 框架时,只需将 Spring 的 4 个基础包以及 commons-logging-1.2.jar 包复制到项目的 lib 目录,并发布到类路径中即可。
这样我们就可以进行Spring下载了,Spring框架可以说是比较受欢迎的框架了,使用它能够简化 Java 企业级应用程序的开发难度和周期哦!最后大家如果想要了解更多java架构师知识,敬请关注奇Q工具网。
推荐阅读: