为什么我在applicationContext.xml里加上下面这段,我的jsp就不能运行了呢。 <aop:config proxy-target-class="true">
<aop:advisor advice-ref="txAdvice-deom" 
pointcut="execution(* Impl..*(..))" />

</aop:config>
<tx:advice id="txAdvice-deom">
<tx:attributes>
<tx:method name="Save*" read-only="true"/>
<tx:method name="Delet*" read-only="true"/>
<tx:method name="Find*" read-only="true"/>
<tx:method name="*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>   
加了这段以后,运行JSP的时候就会提示如下的错误
type Status reportmessage /MyProjSpring/jsp/index.jspdescription The requested resource (/MyProjSpring/jsp/index.jsp) is not available.