尴尬  书写不规范

<aop:config>
        <!--第二种方式:使用AOP的标签实现-->
       <aop:aspect ref="diy">
           <aop:pointcut />
           <aop:before pointcut-ref="diyPointCut" method="before"></aop:before>
           <aop:after pointcut-ref="diyPointCut" method="after"></aop:after>
       </aop:aspect>
    </aop:config>

报错示范:<aop:aspect ref="diy"/>不是自结束标签代码

<aop:aspect ref="diy">
代码写在标签里
<before>
<after>
</aop:aspect>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-04-01
  • 2021-06-10
  • 2022-02-07
  • 2021-12-30
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-20
  • 2022-12-23
  • 2022-03-10
  • 2022-12-23
相关资源
相似解决方案