Browse Source

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

szjbdgzl 1 năm trước cách đây
mục cha
commit
254e41e6a5

+ 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>