zoukankan      html  css  js  c++  java
  • IntelliJ IDEA Groovy(转)

    更新环境变量:

    source /etc/profile

    验证是否成功:

    # groovy -version
    Groovy Version: 2.3.6 JVM: 1.7.0_67 Vendor: Oracle Corporation OS: Linux

    打开groovyConsole:

     

    4)、使用IDE进行开发(这里以Intellij idea 13.1为例)

    1. Enable the plugin

    Before you create your first Groovy application make sure Groovy plugin is enabled in Settings → Plugins.

    2. Create a new project

    Open Project Wizard and select Scala template. Since Groovy requires Java you have to specify the Project SDK.

    If you create a Groovy project for the first time IntelliJ IDEA will offer you to create Groovy SDK library. Press Create button and choose directory with a Groovy SDK.

    The IDE will create an empty project.

    3. Create a new class

    The easiest way to create Groovy class or script is to use Ctrl + N shortcut from Project View or Navigation Bar.

    Choose between class, interface, enum and annotation with Up and Down arrows.

    Let's create a class with a method returning 'Hello, world!' string.

    4. Create a new script

    Now we can create a script file via Ctrl + N shortcut.

    Choose between script and GroovyDSL script with Up and Down arrows.

    Now we can create an instance of our class and invoke hello method.

    5. Run the project

    In order to run the application you can manually create a Run configuration via Run → Edit configurations or run the active script automatically by pressing Ctrl + Shift + F10 shortcut.

     使用Groovy Shell :

    打开Tools-->Groovy Shell...

    使用Groovy Console :

    打开Tools-->Groovy Console...

     

    http://www.it165.net/os/html/201409/9276.html

  • 相关阅读:
    EF6的多线程与分库架构设计实现
    Windows环境下安装Ionic
    Win7 下安装RabbitMQ
    在VS Nuget命令行下进行EF数据库迁移
    WebSocket与Tcp连接
    常用浏览器内核
    异步代码
    TCP与UDP的区别
    二分查找(折半查找)
    顺序查找
  • 原文地址:https://www.cnblogs.com/softidea/p/4372038.html
Copyright © 2011-2022 走看看