소스 검색

数据库事务配置修改(此配置导致数据无法修改,报错Connection is read-only. Queries leading to data modification are not allowed)

szjbdgzl 1 년 전
부모
커밋
254e41e6a5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ibps-provider-root/modules/provider-business/src/main/resources/conf/ibps-resources.xml

+ 1 - 1
ibps-provider-root/modules/provider-business/src/main/resources/conf/ibps-resources.xml

@@ -38,7 +38,7 @@
 		  	<tx:method name="get*" read-only="true"  />
 			<tx:method name="is*" read-only="true"/>
 			<tx:method name="find*" read-only="true"/>
-			<tx:method name="query*" read-only="true"/>
+<!--			<tx:method name="query*" read-only="true"/>-->
 			<tx:method name="*" isolation="DEFAULT"/>
 		</tx:attributes>
 	</tx:advice>