阅读更多

9顶
1踩

编程语言

原创新闻 Struts2 in NetBeans 6.1 发布

2008-06-28 14:46 by 正式记者 gml520 评论(11) 有6316人浏览

说实在的这个版本的Struts2 plugin for NetBeans 并不怎么样! 功能有限,但是有总比没有的好,至少还可以提高一点生产力!  这个插件带的lib 很少最好还是用自己的lib。

 

下面是 Struts2 Support Features:

 

Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications. The framework is designed to streamline the full development cycle, from building, to deploying, to maintaining applications over time. You can read more about Struts 2 at http://struts.apache.org/2.x/.

Installation instructions can be found here.

 

下载地址 https://nbstruts2support.dev.java.net/servlets/ProjectDocumentList?folderID=9422%26expandFolder=9422%26folderID=8962

Framework Support

***To be added***

Context based Code Completion(基于上下文的代码自动补全)

Code completion assists the programmers/developers to fill in the values for the various attributes. It enlists all possible entries that a attribute/element value can have in a configuration file. By doing so, we improve the ease of use for editing a Struts Configuration file.

Some screen shots of code completion:

CC Package Extends

Code completion also assists while specifying a fully qualified java name (inclusive of packages)

CC Java Class



For an exhaustive list on the code completion scenarios, please visit this link.

Hyperlinking (超连接跳转)

With the help of this plugin, the developer will be able to jump to the point of origin (declaration) of an entity. It would be applicable to all the elements present in the configuration file, right from Interceptors, results,etc. to externally referenced Java files. Some of the hyperlinking scenarios that have been implemented are shown below. 

HY Interceptor Class

For an exhaustive list on the hyperlinking scenarios, please visit this link.

Wizards(向导生成)

Wizards assist the programmers by generating a default template for Struts 2 components like Interceptors, Results, Actions and Configuration files. Once, we have a web project with Struts 2 framework, we can add an Interceptor/Action/Result/Configuration file into our project by clicking on 'File -> New File -> Struts 2'. 

Struts 2 Wizard

The screen shot below shows the scenario of creating a new Interceptor using a wizard:

Wizard New Interceptor

来自: java.net
9
1
评论 共 11 条 请登录后发表评论
11 楼 zhiweiv 2009-05-10 14:36
netbeans 最好
10 楼 lbfhappy 2008-06-30 11:40
是啊,IDEA有什么好,看来看去,还是netbeans最好
9 楼 rockjava 2008-06-30 08:54
引用
看看IDEA吧,这些功能N早就有了

为什么有人会喜欢IDEA?代码样式难看到了极点,不要拿收费的和免费的比。
8 楼 gstripe 2008-06-29 20:57
复杂,感觉太复杂了,还是自己手工写比较好。
7 楼 gml520 2008-06-29 19:49
引用
看看IDEA吧,这些功能N早就有了

不要拿收费的东西和免费的东西做对比!
顺便问一句 你付过钱了吗?
6 楼 moses3017 2008-06-29 19:10
看看IDEA吧,这些功能N早就有了
5 楼 hellolaojiang 2008-06-29 15:49
sourceforge 是不是被封了,咋黑多天都无法访问呢?
4 楼 DoubleEO 2008-06-28 20:05
很好很好~
3 楼 gml520 2008-06-28 18:18
总比没有的好!
2 楼 gml520 2008-06-28 18:17
引用
这个插件早就出拉.到现在都还不完善!

这个是更新的版本,前面也说了,功能不是很完善!只是支持了NetBeans6.1
做了一些改善而已
1 楼 niCe 2008-06-28 15:40
很好,很强大

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

  • 扑获视频软件,可以进行后期编码

    扑获视频软件,可以进行后期编码,制作等,可支持多种格式

  • XnViewMediaDetector

    万能看图软件,支持各种格式的图片。少数特殊格式图片需要自己添加,里面有提示,根据提示操作就行,超好用!

  • 视频编解码之帧场处理方法

    1. 帧场信息的介绍 帧场信息的介绍详情可参考:隔行扫描的[百度百科],这里做简要说明。(https://baike.baidu.com/item/%E9%9A%94%E8%A1%8C%E6%89%AB%E6%8F%8F/2081106?fr=aladdin) 首先先介绍帧和场的概念。由于视频都是由一幅幅图像组成的,所以视频也称为视频序列。帧图像就是正常的编解码后的图像,而场图像只是帧图像的一半。场图像的生成是采用隔行扫描,就是将帧图像按偶数行(0,2,4,…)和奇数行(1,3,5,…)各自扫描和排列汇成图

  • nodejs结合node-fluent-ffmpeg进行视频转换,获取视频缩略图

    http://www.360doc.com/content/15/1227/23/597197_523578212.shtml

  • 怎么对视频进行简单补帧

    视频简单补帧的方法

  • opencv读取avi视频并抽取帧

    opencv读取avi视频并抽取帧

  • 三分钟带你学会用ffmpeg解帧合帧

    1. 解帧,把视频变为图片 ffmpeg -i "input.mp4" -r 5 output_dir/frame%04d.jpg 参数说明:-i 输入 -r 帧率 output_dir里面存放解帧好的图片 ffmpeg version 2.8.15-0ubuntu0.16.04....

  • 用DirectShow抓取影片帧

    用DirectShow抓取影片帧下载本文示例源代码http://hi.baidu.com/497420789/blog/item/85ef5913d9f2e3dfc2fd7844.html 很多视频播放软件或视频编辑软件都提供了抓帧的功能,利用这类软件,视频工作者可以很轻松地将一个电影某一时刻的帧抓取出来并保存为图片文件,那么,我们如何自己编程实现这样的功能呢?如果你熟悉MPEG或

  • MediaElement 获取首帧图片

    FileStream stream = File.Open("bear.png", FileMode.Create);RenderTargetBitmap bmp = new RenderTargetBitmap((int)this.video.ActualWidth,     (int)this.video.ActualHeight, 96, 96, PixelFormats.Pbgra32);...

  • 3分钟提取10000个视频的第一帧图片,node执行ffmpeg万能脚本

    安装完成之后可以将node配置到系统环境变量中,最后再检验自己node环境是否ok。

  • 如何从视频文件抓取一桢并生成图像文件

    前几天参加tech-ed大会,其实更多的是认识了一些志同道合的朋友,ms的课程往往是蜻蜓点水,因此听起课来也没有什么意思。不过,有幸认识了园子里面的一些朋友,深感欣慰。技术人员真的非常容易接触,我们能很快的切入主题,然后进行探讨。这也许正是技术人员单纯的一面吧。这两天,又换了新单位,感觉换来换去,实在没有意思。记得刚开始工作的时候,老板对我说不要换来换去的,当时我还和别人说这个,没想到自己却沦落到

  • NodeJS实现视频转码

    视频转码就是一个先解码,再编码的过程,从而将原来的视频转换成我们需要的视频。这种转换可能包括各式(mp4/avi/flv等)、分辨率、码率、帧率等。传统的视频转码中,很常用的工具是FFmpeg。FFmpeg是一套可以用来记录、转换数字音频、视频,并能将其转化为流的开源计算机程序。在nodejs中,也有FFmpeg,叫做node-fluent-ffmpeg。node-fluent-ffmpeg是一个

  • nodejs如何从上传的视频中截取一帧作为预览图片

    客户有个上传视频的需求,上传的视频呢,需要能在线播放并且列表中必须出现类似优酷等视频首页上的那种缩略图,成品如下图所示: 当然了,上传视频的界面就不贴出来了,毕竟我们这篇文章的重点不在于如何上传,而在于如何用nodejs截取视频中的帧!~ 这里我们需要一个开源的第三方插件----大名鼎鼎的多媒体编解码框架ffmpeg,需要安装在服务器上由nodejs调用, 代码贴出如下: func

  • NodeJS 实现视频转码

    var fs = require('fs') var ffmpeg = require('fluent-ffmpeg') ffmpeg('xiaodu_1_6_8.mov') .format('mp4') .on('error', function(err) { console.log('An error occurred: ' + err.message); }) .o...

Global site tag (gtag.js) - Google Analytics