2

アプリをgrails1.3.7から2.1.0にアップグレードしてから、フォームを送信(投稿)しようとすると、以下のエラーが発生します。

ただし、デバッグモードでのみ発生します。

Groovy / Grails ToolSuite3.1.0を使用しています

5:41:13 ERROR [GrailsExceptionResolver] ClassCircularityError occurred when processing request: [POST] /myapp/contextRoot/addItem - parameters:
startTimeDate: 
addcoupon: Add Item
maxRedemptions: 
timeZone: Europe/London
termsAndConditions: 
percentOff: 
title: test
buyX: 
discountType: 
shortDescription: 
redemptionType.id: 
getY: 
categoryKey: 
amountOff: 
org/springframework/beans/PropertyBatchUpdateException. Stacktrace follows:
org.codehaus.groovy.grails.web.servlet.mvc.exceptions.ControllerExecutionException: Executing action [addItem] of controller [com.mastercard.deals.merchant.testController]  caused exception: Runtime error executing action
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:662)
Caused by: org.codehaus.groovy.grails.web.servlet.mvc.exceptions.ControllerExecutionException: Runtime error executing action
    ... 3 more
Caused by: java.lang.reflect.InvocationTargetException
    ... 3 more
Caused by: java.lang.ClassCircularityError: org/springframework/beans/PropertyBatchUpdateException
    ... 3 more

なぜこれが起こっているのか私は困惑しています...何かアイデアはありますか?

ありがとう

4

1 に答える 1

2

したがって、のJIRAは問題に類似しているように見えます。

デバッグモードで-noreloading引数を指定してアプリを実行すると、次のように機能します。

-grails-debug -noreloading -Dserver.port=8082 run-app
于 2013-02-01T14:04:24.440 に答える