问题标签 [grails-2.0]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1289 浏览

grails - Grails 2.0 插件依赖项

我正在尝试使用私有插件构建 Grails 2.0 应用程序:

  • mycompany-frontend = Grails 应用程序
  • mycompany-core = 用于域类的 Grails 插件

在 mycompany-core 插件中,我创建了一些域类并在 BuildConfig.groovy 中添加了一个 joda-time 依赖项:

在 mycompany-frontend 应用程序中,我有以下 BuildConfig.groovy:

我还从 application.properties 中删除了 grails.plugins 条目以避免混淆。但最后,mycompany-frontend 无法从 mycompany-core 插件中找到模型类。

我应该查看/修复什么才能使其正常工作?

0 投票
1 回答
1416 浏览

grails - 带有数据的 POST 请求

这可能是一个菜鸟问题,但我已经摆弄了几个小时,但无法找到解决方案。

我想使用 grails 发送一个带有表单数据的 POST 请求,
在 jQuery 中,以下 1 班轮按我的意愿工作:

但以下 Grails 代码没有:

我认为这与正在发送的数据有关,因为请求离开但失败(facebook 图是基本 uri ...)
jquery 代码将数据作为表单数据发送,但我不确定这就是问题所在

谢谢!

0 投票
1 回答
611 浏览

grails - 用于抛出 UnknownHostException 的 grails 的 RabbitMq 插件

我正在使用带有 grails 2.0 的 rabbitmq 0.3.3 插件。我创建了一个没有交换的队列,当我尝试调用这个队列时,我得到了以下异常。

0 投票
1 回答
572 浏览

grails - grails upgrade 2.0.1 命令对象验证错误

从 grails 1.3.7 升级到 2.0.1 后,在控制器中验证命令对象时,我遇到了奇怪的异常。

我的 UserCommand 命令对象如下所示:

控制器绑定数据如下:

此时我收到上述错误消息。我还尝试使用命令对象作为参数保存(UserCommand 命令),但没有任何效果。有人有什么提示吗?

0 投票
2 回答
2612 浏览

grails - 如何在 grails 中发送电子邮件

我的应用程序想要使用自定义邮件发送电子邮件。我浏览了文档http://grails.org/Mail+from+Grails,我觉得它很不完整。我按照替代邮件中提到的步骤进行操作,但出现异常

处理请求时发生 NullPointerException:[GET] url/sendEmail 无法在空对象上调用方法 sendNewEmail()。

我的控制器看起来像这样

XXXMailer paMailer paMailer.sendNewEmail()

0 投票
1 回答
213 浏览

grails-2.0 - Groovy++ 是否适用于 Grails 2.0

我在 Grails 2.0 中有性能问题。我想知道groovy ++是否会有所帮助。

0 投票
2 回答
2743 浏览

grails - 从 grails 中的 lib 文件夹中读取 jars

我想使用Apache POI 库解析一个 excel 文件,以将开发模式下的一些数据引导到我的 grails 2.0.1 应用程序中。

我尝试使用 Grails excel-import 插件,但是当我执行 run-app 时插件会自动卸载

因此,我决定暂时不使用插件。首先,我将下一个 jar 复制到 grails 应用程序 lib 文件夹中

我读过我应该在grails-app/conf/BuildConfig.groovy. 所以,我添加了下一个:

但是,当我执行 run-app 时,应用程序仍然无法找到罐子。

我没有使用任何 IDE。欢迎任何反馈!

0 投票
1 回答
779 浏览

grails - 你什么时候会使用新的动态 GORM 方法 findOrSaveBy/Where?

我正在试验 Grails 2.0.1 并阅读了文档,但对新的动态方法感到困惑:

我可以想象一些findOrCreateBy/Where可能会派上用场的情况,但对于我的一生,我想不出任何需要的情况findOrSaveBy/Where。即使在github 上的测试用例中,这种方法的动机对我来说也不是很明显。似乎在每个测试用例中,您显然想要find或显然想要这样做,save所以findOrSave只是使代码的意图变得不那么清晰。

这些功能的原始 JIRA 条目没有讨论动机或提供任何背景。有人可以给我一些这些方法有益的场景吗?

0 投票
2 回答
488 浏览

grails - Tips for saving a large domain object tree

I'm trying to save a large grails domain object structure, where the number of domain classes is a handful, but the number of objects around a hundred. The objects are linked using classic grails hasMany.

The basic idea is to wipe the database first and then populate it with a configuration DSL using a custom groovy builder. The builder returns a complete object graph/tree, which I then want to save.

I have tried various ways to save it, such as save just the root node, traverse the whole tree saving every node etc. However, Hibernate bails out at various places complaining about a flushed session.

Has anyone done something similar and can give some pointers/advice how to proceed?

Would it be better to integrate the save() operations as part of the build process, e.g. nodeCompleted(parent, node)?

Has Hibernate a maximum of the number of outstanding SQL operations, that has become exceeded?

0 投票
1 回答
1251 浏览

grails-2.0 - 从 1.3.7 升级到 2.1 版后执行 grails clean 或 grails run-app 时出错

我刚刚升级到 grails 2.1.. 可用的最新版本,从 grails 1.3.7 开始,我更新了 grails_home 和 path 环境变量以反映这个新版本。但是当我执行 grails run-app 或 grails clean 时,出现以下错误

我已经安装了 groovy ver 1.8.3。

我在这里错过了什么或做错了什么?谢谢