皇甫?IOC和AOP的拓展实例

Posted ☼柚子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了皇甫?IOC和AOP的拓展实例相关的知识,希望对你有一定的参考价值。

技术分享

<!--构造器注入 -->
   <bean id="user1" class="cn.happy.entity.User">
      <constructor-arg index="0" type="java.lang.String" value="lxl"></constructor-arg>
      <constructor-arg index="1" type="java.lang.String" value="[email protected]"></constructor-arg>
   </bean>
Test:
ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); User user=(User)ctx.getBean("user1"); System.out.println(user.getEmail());
<!-- set方法注入 -->
   <bean id="user2" class="cn.happy.entity.User">
      <!-- 使用property -->
      <property name="username" value="张靓颖"></property>
   </bean>

技术分享

技术分享

******************************************************待续

以上是关于皇甫?IOC和AOP的拓展实例的主要内容,如果未能解决你的问题,请参考以下文章

皇甫?初识AOP

spring的IOC和AOP协同工作

什么是spring的ioc aop

IoC和AOP的实际应用

Spring IoC 容器和 AOP

Ioc与Aop