Spring xml problem

后端 未结 2 1785
梦如初夏
梦如初夏 2021-02-14 08:34

I\'m trying to write a simple Spring AOP app, but I have problem with the xml configuration.

My xml:




&         


        
2条回答
  •  星月不相逢
    2021-02-14 09:24

    Change the declaration at the top of the XML to look like this:

    
    

    You're just adding this "http://www.springframework.org/schema/aop/spring-aop-3.0.xsd". The xsi:schemaLocation attribute is just a bunch of pairs. The first of each pair is a schema URI, the second is the URL where the schema can be found. You can think of it as a map: key, then value.

提交回复
热议问题