当前位置: 首页 > 工具软件 > NSpring > 使用案例 >

spring - 第N篇 一些笔记

钮兴安
2023-12-01

1、properties文件的引入

<bean id="propertyConfigurer" 
         class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
         <property name="locations" value="mail.properties"/>
    </bean>
    <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
       <property name="host" value="${mail.host}"/>
       <property name="username" value="${mail.user}"/>
       <property name="password" value="${mail.pwd}"/>
    </bean>

或者
<bean name="propertyConfigurer"  
   class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
   <property name="locations">  
      <list>  
         <value>classpath:mail.properties</value>
      </list>  
   </property>  
</bean>

2、

转载于:https://www.cnblogs.com/ZeroMZ/p/11480522.html

 类似资料: