|
2011-12-07 |
|
The key new features introduced in IntelliJ IDEA 11 include:
- Support for web development with the Play framework.
- Groovy 2.0 support with new intention actions and refactorings.
- Gradle integration.
- CoffeeScript editor with code assistance, inspections and formatting options.
- Grails 2.0 support with all its features, including also Grails web-flow and Spock framework.
IntelliJ IDEA is now a first-class citizen on all of its supported platforms, with platform-specific features such as Mac OS X Lion full-screen support or drag-n-drop and symbolic links support on Linux and much more.
The updated IntelliJ IDEA Community Edition gets important improvements for Android development, including live preview of Android UI layouts and compatibility with the latest Android 4.0 SDK (Ice Cream Sandwich).
For further details check out what’s new, download IntelliJ IDEA 11 and develop with pleasure!
|
|
2011-04-07 |
|
appCode is a new IDE based on IntelliJ platform, for developers building apps for Apple devices such as Macs, iPhones & iPads.
10 facts about JetBrains appCode:
- An Objective-C IDE with a really smart code editor
- Runs on Mac OS X only, on Intel-based computers
- Can open and create Xcode projects
- Integrates with the standard Interface Builder
- Can run iOS Simulator
- Has a debugger with evaluate expression
- Already has 'Change Signature' and 'Extract Method' refactorings
- Analyses code on the fly and offers quick-fix suggestions
- Supports Subversion, Git, Perforce and CVS version control systems
- Oh, and a fast & intelligent code completion, of course!
For more, please visit http://www.jetbrains.com/objc/index.html
|
|
|
2010-05-31 |
PhpStorm 1.0版本已经正式推出啦,不少人可能都会关注这款工具对Php的支持情况,这篇文章会做一个基本的介绍,让大家能够快速了解该工具,方便日常开发。本文主要是针对Windows,其他的操作系统做一下相应改变即可。
首先我们要设置php的开发环境,在Windows下,XAMPP就可以啦,可以省去很多麻烦的事情,好处也就不说啦,下载地址为:http://www.apachefriends.org/en/xampp-windows.html。XAMPP安装好以后,需要安装一下PHPUnit和phpDoc,PhpStorm都有支持,PHPUnit的安装步骤: http://www.phpunit.de/manual/current/en/installation.html ,phpDoc只需: >pear install PhpDocumentor 即可。
这里还要提及一下PhpStorm下php debug问题。php的debug主要是通过xdebug实现的,xampp已经包含了对xdebug支持,不过默认没有打开,所以这里我们要讲xdeubg打开,这样就可以在PhpStorm下debug php程序啦。首先打开php.ini,将zend_extension = "D:\develop\xampp\php\ext\php_xdebug.dll"打开,同时[xdebug]设置项打开相关的设置,只要是 xdebug.remote_enable = On 要打开,不然无法调试。php.ini的xdebug设置如下:
xdebug.remote_enable=1
xdebug.remote_autostart=1
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey=PhpStorm1
设置完毕,启动PhpStorm,我们使用打开目录功能,这里的目录最好是xampp的htdocs下的一个目录,这样我们就可以实时调试程序。接下来我们要打开设置面板,然后选择php,设置正确的php home路径,这里就可以进行php相关的单元测试等。
总结: PhpStorm还包含其他很多特性,如ftp同步,php预览等等,这些特性在开发的时候非常有用,这些可以在官方中找到相关的文档和vedio。
|
|
|
2010-01-30 |
|
在Google App Engine for Java推出后,样例的代码都是基于Ant的,但是Java开发中更多的是基于Maven的,于是也Mawei搞了一个GAE/J Maven archetype,同时将GAE/J相关的开发包上传到http://www.mvnsearch.org/maven2 的Maven Repository中。当然开源社区也做了不少GAE和Maven整合的例子,其中比较突出的就是Maven GAE Plugin,可以管理GAE/J涉及到各种任务。本文就是介绍如何快速创建一个整合了GAE Plugin的GAE项目,其实也非常简单,3个步骤。 本文假设你已经安装了Maven,而且了解Maven的基本用法。
1 首先根据Maven GAE Archetype创建一个新的工程:
> mvn archetype:generate -DarchetypeCatalog=http://www.mvnsearch.org/maven2
2 进入到新建目录,下载Google App Engine SDK。 GAE Plugin一个好处就是在你们没有下载SDK的时候,自动帮你下载一个,个人建议你还是选择这种方式。当如下面这个步骤只要执行一次即可:
> mvn gae:unpack
3 运行GAE项目,项目创建完毕后,你可能马上向看到一个Demo页面,没有关系,执行下述命令,然后在浏览中打开 http://localhost:81即可
> mvn gae:run
总结:整个项目创建还是非常流畅的,甚至你都不需要下载SDK。当然项目创建,你可能需要使用IDE打开进行开发,这个前面有文章介绍过如何在IDEA下开发GAE/J应用,你可以参考一下。有了GAE Plugin,同时将将GAE/J的jar上传到Maven Repository中,项目管理会方便很多,同时相关的CI、项目管理都能很多好地进行,如果没有什么特殊要求,个人建议还是尝试一下这种方式,会有不少便捷。
|
| |
|
|
<< 第一页 < 上一页 1 2 3 4 5 6 7 8 9 10 下一页 > 最后一页 >>
|
| 第 1 - 5 共 59 |