English 中文(简体)
在Intellij建立铁路项目
原标题:Setting up grails project in Intellij

我试图将一个现有的铁路工程 输入Intellij, 但它不承认SDK。

I already setup my paths in my home directory /.bash_profile here is what I got going in there.

export GRAILS_HOME=/Applications/grails-2.0.4
export PATH=$PATH:$GRAILS_HOME/bin

Now when I fire up Intellij and do a file > new Project > Create project from existing source I name my project then when I get to SDK there is no grails SDK. I presumed when I setup my path in the .bash_profile it would recognize the path to the grails SDK.

任何帮助 这将是巨大的。

问题回答

检查是否安装了圣杯插件 。

转到工程项目, 右键单击您 < strong> project name & gt; Grails & gt; 配置圣杯 SDK

从那里创建 SDK...

我在这里没有看到的问题是,您是否使用 Intellij < / strong > 的“ 坚固” 或“ 共同体版” Intellij < / 强”? 因为无法在共同体版的Intellij 中运行圣杯 - 插件只能在“ 终极” 版本中提供...

除此以外,我本人也遇到一些问题,无法找到圣杯SDK, 来选择我想选择的SDK(在Intellij Ultimate 12.0版本中),但是它就在那里,它只是把自己隐藏得很好;* 在您可以选择自己的SDK的页面上,您必须选择 Groovy < em > 和 < em > Spring andvoíla:您可以看到您的 Grails SDK已经准备好被选中(或者如果你安装了它,甚至可以选择 Griffon SDK)。 *

Intellij 不取取出您为 garil 设置的路径设置。 您需要在 intellij 中指定它。 这样您就可以选择对不同或相同的工程使用不同版本的 garil 。

打开工程设置时, 有选项可以添加新的 SDK, 选择您的圣杯安装的家路徑, 并且会自动配置为全球图书馆, 此库会添加为您的模块的依附 。

this should help as well IntelliJ 11 - Grails SDK is not configured

一旦工程装入, 在事件日志中, 您应该看到一个消息 :

找不到SDK杯 。 模块模块Name 这里没有SDK杯。 配置 SDK

点击 配置 SDK 打开一个对话框。 如果没有可用的选项, 请单击创建, 并浏览到您的圣杯所在的位置( 我自己的位置是/opt/ grails- 2. 2. 2. 2. 0 )。 导航似乎足够满足 SDK 的要求。 我选择了该文件夹, IJ 做了其余的操作 。

这将成为圣杯SDK在安装家庭杯时通常使用的路径。 更改机器和机内的东西 。

/用户///.sdkman/候选人/

包括:-/用户/托姆/.sdkman/候选人/铁路/2.4.3





相关问题
grails + gwt request handling via controllers

I am new to gwt. I am trying to integrate gwt+grails.Can anybody provide me a good example for handling the request using grails controllers and not a custom servlet.I will be really thankful if ...

Error loading the grails gwt module xml

I ve installed the plugin from this article by Peter http://www.cacoethes.co.uk/blog/groovyandgrails/the-command-pattern-w.... While compile time its not able to find the module file which is present ...

Sorting Objects Based on Custom Domain Class Methods

I have a domain class, in which I ve defined some methods which give the object a score based on different algorithms (eg. popularity). I now want to retrieve a list of these objects sorted by one of ...

Grails Packaging and Naming Conventions

Packaging Controllers, Services,etc. i.e. - com.company.controllers - com.company.services Is this a good practice or should be avoided by all means?? Another worth mentioning problem I encountered ...

Hibernate/GORM: collection was not processed by flush()

I have an integration test in my Grails application that fails when I try to save an entity of type Member invitingMember.save(flush: true) This raises the following exception org.hibernate....

热门标签