Element ‘aop:before‘ must have no character or element information item [children], because

报错的XML配置

 <aop:config>
  <aop:aspect ref="yourAspectBean">
    <aop:before method="beforeAdvice" pointcut="execution(public void com.lagou.service.impl.AccountServiceImpl.transfer())"/>
  aop:aspect>
aop:config>

报错原因

aop:before标签是一个自闭合标签(self-closing tag),不需要有结束标签。在XML中,自闭合标签用于表示一个标签没有任何内容或子元素,例如aop:before只是一个单独的标签,不需要额外的结束标签。

你可能感兴趣的:(前端,javascript,数据库)