开拓Spring的进程中呈现Eclipse不能识别tx:advice /标签
The prefix "tx" for element "tx:advice" is not bound 错误的说明
在开拓Spring的进程中,有时会呈现Eclipse不能识别<tx:advice />标签。
1.提示呈现以下错误:
这个错误的原因是:我们在界说申明AOP的时候,没有加载schema。
2.Spring的设置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
赤色标志的内容是需要添加的内容,添加之后Eclipse就可以或许识别<tx:advice />,<aop:config />
标签了。
3.表明一下(* com.evan.crm.service.*.*(..))中几个通配符的寄义:
第一个 * —— 通配 任意返回值范例
第二个 * —— 通配 包com.evan.crm.service下的任意class
第三个 * —— 通配 包com.evan.crm.service下的任意class的任意要领
第四个 .. —— 通配 要领可以有0个或多个参数
所以(* com.evan.crm.service.*.*(..))匹配:包com.evan.crm.service下的任意class的具有任意返回值范例、任意数目参数和任意名称的要领。