2.spring引入外部屬性檔案
阿新 • • 發佈:2022-05-05
1.外部檔案的config.properties username=wmd----------------------------->此處需要注意的是:(username是spring的關鍵字,命名時需要避開,不要使用username) age=24 2.spring配置檔案路徑 2.1 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:util="http://www.springframework.org/schema/util" 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 http://www.springframework.org/schema/context/spring-context.xsd------------->也必須加入這一行,不然會報錯:(萬用字元的匹配很全面, 但無法找到元素 ') ">)_ 2.2 <context:property-placeholder location="classpath:conf/config.properties"/>-------->引入外部的屬性檔案:classpath意思是在類路徑下載入 <bean id="person" class="entity.Person"> <property name="name" value="${username}"></property> <property name="age" value="${age}"></property> </bean>