Преглед на файлове

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

szjbdgzl преди 1 година
родител
ревизия
130a81e588
променени са 1 файла, в които са добавени 4 реда и са изтрити 4 реда
  1. 4 4
      ibps-provider-root/modules/provider-business/src/main/resources/conf/ibps-resources.xml

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

@@ -35,10 +35,10 @@
 
 
 	<tx:advice id="txAdvice" transaction-manager="transactionManager">
 	<tx:advice id="txAdvice" transaction-manager="transactionManager">
 		<tx:attributes>
 		<tx:attributes>
-		  	<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="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="*" isolation="DEFAULT"/>
 			<tx:method name="*" isolation="DEFAULT"/>
 		</tx:attributes>
 		</tx:attributes>
 	</tx:advice>
 	</tx:advice>