1

I about to create a multi-module Groovy web application. It should consists of the following parts:

* a web frontend,
* a simple web crawler.

The web frontend would communicate with the crawler through a relational database.

I am new to the world of Groovy. Could you recommend technologies to use (e.g. build system, web framework, etc.) which would fit well together?


I wanted to build the web application on Grails and use Gradle to build the whole project. I wasn't able to make the two tools cooperate though.

4

1 回答 1

0

Gradle 最适合您的需求。

您可以在此处找到更多重新分级多项目构建的信息:http: //gradle.org/docs/current/userguide/multi_project_builds.html

关于 Groovy 编译,您可以在此处阅读:http: //gradle.org/docs/current/userguide/groovy_plugin.html

关于 WebApp 处理,您可以在此处阅读:http: //gradle.org/docs/current/userguide/war_plugin.html

更新:这里还有一个有趣的帖子(有点旧,但仍然有效):

http://mrhaki.blogspot.com/2009/11/gradle-goodness-groovy-multi-project.html

于 2012-08-24T10:39:40.343 回答