快速业务通道

使用Java进行Web开发的随想 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-21

使用Java进行Web开发的随想

时间:2011-01-03

我朋友经常引用我的一句话就是:你的Java对我的Javascript是侵入的....,仿佛她比我还OO来着。

我自己就提出了一个解决的方法:就是把Java对象写成JS对象,这样Web设计人员只要关注JS对象,用JS对象来渲染整个Web页面,这样我就不会和他的领域冲突了。

简单来说,我们平常的WEB框架都是号称MVC的,这样它们就把V这个事情压在了JAVA程序员的身上,可怜我的审美观啊~所以我们应该把V继续往下推,推给对JAVA什么都不懂,但是却有非常丰富的WEB设计人员的身上。总不能让别人去学JAVA呀,那就只好把JAVA对象写成JS对象,这样WEB设计人员就可以轻松调用JS了。

大体实现过程是这样的:

1、双方先讨论项目的需求,然后确定下个个页面需要显示什么内容,怎么显示不管。讨论完后便确定了JS对象和数据库的大体结构。

2、各自写各自的东西...

3、双方写好后把WEB页面通过JS对象和Java连接起来,调试,完工。

具体关键代码:

J2J.java的代码,功能是获取scope范围内,名称为source的java对象,然后把这个java对象写成名称为distName类别为dist的JS对象。

代码:

/* * J2J.java * * Created on 2006年10月2日, 下午7:16 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package net.vlinux.tag.j2j; import javax.servlet.jsp.*; import javax.servlet.jsp.tagext.*; import java.lang.reflect.*; import java.util.*; /** * * @author vlinux */ public class NewObject extends TagSupport {   private String dist;   private String distName;   private String scope;   private String source;   private List<Method> getGetMethods( Object aObject ) {    Method[] array = aObject.getClass().getMethods();    List<Method> list = new ArrayList<Method>();    for( int i=0;i<array.length;i++ ){     String methodName = array[i].getName();     if( methodName.matches("get.*") )      list.add(array[i]);    }    return list; } private String getFieldName( Method aMethod){   String methodName = aMethod.getName();   String subName = methodName.substring(3,methodName.length());   return subName.toLowerCase(); } private Object getSourceObject(String scope, String source){   if( scope.equals("request") ){    return pageContext.getRequest().getAttribute(source);   }else if( scope.equals("session") ){    return pageContext.getSession().getAttribute(source);   }else if( scope.equals("page") ){    return pageContext.getAttribute(source);   }else{    System.out.println("xxx");    return null;   } } public int doStartTag(){   JspWriter out = pageContext.getOut();   Object sourceObject = getSourceObject(getScope(),getSource());   List list = getGetMethods( sourceObject );   try{    out.println( "<script>" );    out.println( "  var " + getDistName() + " = new " + getDist() + "();");    for( int i=0;i<list.size();i++ ){     try{      String fieldName = getFieldName((Method)list.get(i));      String value = ((Method)list.get(i)).invoke( getSourceObject(getScope(),getSource())).toString();      out.prin

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号