遵循 Grails Spring Security Core 教程时出现“没有正在进行的事务”错误

Fib*_*con 3 java grails spring spring-security

我正在关注他们文档中的 Grails Spring Security Core 教程。当我到达 24.1.5.5 时,问题就开始了。我被指示将 Bootstrap.groovy 修改为以下内容,然后运行该应用程序:

package com.mycompany.myapp

class BootStrap {

   def init = {

         def adminRole = new Role(authority: 'ROLE_ADMIN').save()

         def testUser = new User(username: 'me', password: 'password').save()

         UserRole.create testUser, adminRole

         UserRole.withSession {
            it.flush()
            it.clear()
         }

         assert User.count() == 1
         assert Role.count() == 1
         assert UserRole.count() == 1

   }
}
Run Code Online (Sandbox Code Playgroud)

运行应用程序给了我这个错误:

2020-03-31 15:46:19.294 错误 --- [restartedMain] osboot.SpringApplication:应用程序运行失败

javax.persistence.TransactionRequiredException: org.hibernate.internal.SessionImpl.checkTransactionNeeded(SessionImpl .java:3586) 上没有正在进行的事务

我试图使用@Transactional 来解决这个问题,但它对错误没有影响。将 Bootstrap.groovy 恢复为其默认值可让应用程序正常运行。本教程缺少(或不正确)什么导致它失败?

eri*_*son 7

文档已过时。Hibernate 5.2+ 现在需要事务进行写操作。添加 @Transactional 不起作用,因为它init是一个闭包,并且注释适用于方法或类。

在引导程序中创建一个新方法并向其添加事务。然后从您的 init 闭包中调用它。例如。

class BootStrap {

    def init = {
        addTestUsers()
    }

    @Transactional
    void addTestUsers() {
        def adminRole = new Role(authority: 'ROLE_ADMIN').save()

        def testUser = new User(username: 'me', password: 'password').save()

        UserRole.create testUser, adminRole

        UserRole.withSession {
           it.flush()
           it.clear()
        }

        assert User.count() == 1
        assert Role.count() == 1
        assert UserRole.count() == 1
    } 
}
Run Code Online (Sandbox Code Playgroud)

  • https://github.com/dylan-goss/securitytest/blob/master/grails-app/init/securitytest/BootStrap.groovy#L3 - 您正在使用 spring 的事务 - 请使用 GORM 的,一切都应该工作:) (3认同)
  • 我创建了一个 PR 来更新文档 https://github.com/grails-plugins/grails-spring-security-core/pull/613 (2认同)