gpt4 book ai didi

grails - Grails脚手架和Spring Security Core-实体 'hellip'未定义

转载 作者:行者123 更新时间:2023-12-02 15:46:59 26 4
gpt4 key购买 nike

我在Grails中测试了Spring Security Core插件,但脚手架生成的 View 存在一些问题。

我有一个简单的域类-人员:

package test

class Person {

static constraints = {
}

String name
Date dob

}

这样,我使用了grails generate-all命令来生成 Controller 和 View 。此时一切都非常完美, View 也完美无缺。

然后,我继续使用Spring Security Core保护我的应用程序。我在build.gradle中添加了以下行:
compile 'org.grails.plugins:spring-security-core:3.0.3'

并运行以下s2-quickstart命令以保护我的应用程序
grails s2-quickstart test User Role

然后,我使用ROLE_ADMIN权限创建了登录用户,并在 Controller 上添加了以下标记:
@Secured(['ROLE_ADMIN'])
def index(Integer max) {
params.max = Math.min(max ?: 10, 100)
respond Person.list(params), model:[personCount: Person.count()]
}

Spring Security Core插件之前运行的索引页面现在给我这个错误:
This page contains the following errors:

error on line 9 at column 82: Entity 'hellip' not defined
Below is a rendering of the page up to the first error.

我发现有问题的行在我的index.gsp中:
<a href="#list-person" class="skip" tabindex="-1"><g:message code="default.link.skip.label" default="Skip to content&hellip;"/></a>

还有其他人有这个问题吗?我该如何解决?

提前致谢。

干杯,
不久

最佳答案

我升级到grails版本3.3.0和spring安全内核3.2.0.M1后,此问题已解决。

谢谢。

关于grails - Grails脚手架和Spring Security Core-实体 'hellip'未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45895582/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com