当前位置:  软件>java软件

Web框架 Aranea

    来源:    发布时间:2014-12-26

    本文导语:  Aranea 是一个 Java 的MVC 框架,提供一个通用简单的方法来构建 Web 应用组件,以及可重用的业务逻辑和界面。 下面是一个登录界面: public class LoginWidget extends TemplateBaseWidget { /* Widget we will create and attach to this widget. */ private FormW...

Aranea 是一个 Java 的MVC 框架,提供一个通用简单的方法来构建 Web 应用组件,以及可重用的业务逻辑和界面。

下面是一个登录界面:

public class LoginWidget extends TemplateBaseWidget {
/* Widget we will create and attach to this widget. */
private FormWidget form;

protected void init() throws Exception {
/* Sets the view selector that will be used for rendering this widget.
* The path to real JSP file is determined by:
*
* StandardJspFilterService field jspPath (configured in aranea-conf.xml)
* + viewselector
* + ".jsp" */
setViewSelector("login");

/* Register a global proxying eventlistener - it receives all widget events and upon
* receiving event named "someEvent" proxies it to "handleEventSomeEvent" method
*
* This listener is added by default in super class and is only shown here for
* illustrative purposes. It can also be cleared and overridden when needed.
*/
addGlobalEventListener(new ProxyEventListener(this));

/* Create a new FormWidget with two self-described input fields. */
form = new FormWidget();
// Add the input fields. Arguments taken by addElement():
// String elementName, String labelId, Control control, Data data, boolean mandatory
form.addElement("username", "#User", new TextControl(), new StringData(), false);
form.addElement("password", "#Password", new TextControl(), new StringData(), false);

// attach created form to our widget.
addWidget("loginForm", form);
}

// event handlers
}

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • web网页自动跳转方法:Html body onload自动跳转举例
  • aria2的Web接口 a2web
  • Python3通过request.urlopen实现Web网页图片下载
  • SVN的Web管理界面 svn-web-admin
  • Web前端设计:Html强制不换行<nobr>标签用法代码示例
  • 嵌入式的Scala Web服务器 SOCKO WEB
  • Web前端开发如何利用css样式来控制Html中的h1/h2/h3标签不换行
  • Web相册 Dumi Web Gallery
  • Web前端设计:html上标<sup>标签与下标<sub>标签详解
  • 请问:authorization of web services和authenication of web services什么区别?
  • Web服务器 Gatling Web Server
  • 小型Web服务器 nweb Web Server
  • C#取得Web程序和非Web程序的根目录的N种取法总结
  • 有没有什么方法或思路把web服务器上的文件上传到另外一个web服务器?
  • 用Java开发web程序,用什么做web服务器最好?
  • LINUX下面的WEB Service如果编写?是用.NET写吗?WINDOW下面的web service能在LINUX下面用吗?
  • 在单网卡的linux web服务器上虚拟Windows系统搭建多个.net web网站,有谁做过?
  • 问tomcat中在tomcat启动时,哪个包加载了/WEB-INF下的web.xml文件?要多少给多少分
  • 我是刚开始学web service ,我想请教哪里有构件web Service的具体操作。
  • 100分求《嵌入式系统Web服务器—TCP/IP Lean》或《TCP/IP Lean Web Servers for Embedded Systems 》
  • WSGI Web服务器 UV-Web


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3