jeffy

BlogJava 首页 新随笔 联系 聚合 管理
  70 Posts :: 1 Stories :: 14 Comments :: 0 Trackbacks

#

Object  collection = TagUtils.getInstance().lookup(pageContext, name, property, scope);
说明:
1、如果property的值为null,那么
在scope定义的范围内(即request、session、application、page)查找以name变量值命名的对象(返回值是一个Object,然后转化成Collection)

2、如果property的值不为null,那么
做完1步骤的事情后,她将调用org.apache.commons.beanutils.PropertyUtils类中的getProperty方法,得到目标对象,转化成Collection类型

posted @ 2006-02-05 10:52 Live-in Java 阅读(1628) | 评论 (0)编辑 收藏

4. 错误描述: Eclipse 不能自动编译,即使已经在Project menu选择了自动构建选项。
    错误信息:  不能编译,生成java class文件
    错误原因:  项目属性里面的java构建路径里面缺少构建需要的类包,或者错误引用不存在的类包
    错误解决: 项目属性里面的java构建路径里面添加必要的类包。

3
. 错误描述
    错误信息: java.lang.NoSuchMethodError:  org.apache.commons.pool.impl.GenericObjectPool: method <init>()V   not found
    错误原因: commons-pool-1.2.jar,commons-dbcp-1.2.1.jar,commons-collections.jar版本问题
    错误解决: commons-pool-1.2.jar,commons-dbcp-1.2.1.jar,commons-collections.jar放置,就解决。


2
. 错误描述:当用Eclipse的Lomboz J2EE Project 创建web应用, web server选的是weblogic8.1, 自动生成的weblogic.xml 的参考DTD <!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 6.1//EN" "http://www.bea.com/servers/wls610/dtd/weblogic-web-jar.dtd">
           当在weblogic.xml添加
    <container-descriptor>
             <prefer-web-inf-classes>true</prefer-web-inf-classes>  //要weblogic 先加载 WEB-INF下面的jar包, 避免类包冲突.
            </container-descriptor>
     产生警告:
    错误信息: Deployment descriptor "weblogic.xml" is malformed. Check against the DTD: org.xml.sax.SAXParseException: Element type "prefer-web-inf-classes" must be declared.
             Deployment descriptor "weblogic.xml" is malformed. Check against the DTD: org.xml.sax.SAXParseException: The content of element type "container-descriptor" must match "(check-auth-on-forward?,redirect-content-type?,redirect-content?,redirect-with-absolute-url?)". (line 5, column 26).>
    错误原因: weblogic.xml的DTD版本是6.1,版本太老
    错误解决:   <?xml version="1.0" encoding="UTF-8"?>
               <!DOCTYPE weblogic-web-app   PUBLIC "-//BEA Systems, Inc.//DTD Web Application 7.0//EN"   "http://www.bea.com/servers/wls700/dtd/weblogic700-web-jar.dtd" >
    
1. 错误描述:把axis-bin-1_2_1.zip解压后的webapps目录下面的axis目录copy到{TOMCAT_HOME}\webapps\axis.  Tomcat启动之后,点击 http://127.0.0.1:8080/axis/happyaxis.jsp, 有下面错误
    错误信息: Error: could not find class javax.activation.DataHandler from file  activation.jar   Axis will not work. 。
                          控制台显示下面错误:
                          -Unable to find required classes (javax.activation.DataHandler and  
                          javax.mail.internet.MimeMultipart). Attachment support is disabled.
    错误原因: 缺少 activation.jar ,mail.jar, 
    错误解决: 把这几个类包放到{TOMCAT_HOME}\webapps\axis\WEB-INF\lib下面。
posted @ 2006-01-12 17:49 Live-in Java 阅读(1753) | 评论 (1)编辑 收藏

function ischinanese(s){
 var ret=true;
 for(var i=0;i<s.length;i++){
  ret=ret && (s.charCodeAt(i)>=10000);
 }
 return ret;
}
posted @ 2006-01-11 13:22 Live-in Java 阅读(592) | 评论 (0)编辑 收藏

MDX介绍:http://www.588188.com/netbook/sqlserver2000/olapdmad/agmdxbasics_04qg.htm
 商务智能 http://www.microsoft.com/china/sql/techinfo/BI/analysis.asp
SOAP Webservice:  http://www-128.ibm.com/developerworks/cn/webservices/index.html
  http://bjzhanghao.cnblogs.com/archive/2004/08/05/30402.html
http://dev2dev.bea.com.cn/techdoc/200409245.html
http://bbs.w3china.org/list.asp?boardid=10&page=2&action=
Web Service的概念及其实现:http://www.javaresearch.org/article/showarticle.jsp?column=5&thread=24281
Axis 主页:http://ws.apache.org/axis/
安装Axis和Tomcat : http://www.javaresearch.org/forum/thread.jsp?column=21&thread=12174
Axis on Weblogic Error: http://forum.java.sun.com/thread.jspa?threadID=552949&messageID=2903848
一个简单的WSDL文档 : http://bjzhanghao.cnblogs.com/archive/2004/10/13/51614.html
用Axis 1.1 for Java进行Web Services开发(1):http://www.javaresearch.org/article/showarticle.jsp?column=5&thread=14047

AXIS学习笔记 一 至 五
客户端调用 静态 动态
Webservice传输自定义类的例程
handler 的使用
posted @ 2006-01-09 23:28 Live-in Java 阅读(214) | 评论 (0)编辑 收藏

XML/A:  XML for Analysis is a set of XML Message Interfaces that use the industry standard Simple Object Access Protocol (SOAP) to define the data access interaction between a client application and an analytical data provider (OLAP and data mining) working over the Internet.
posted @ 2006-01-09 23:15 Live-in Java 阅读(215) | 评论 (0)编辑 收藏

1.下载:mondrian-2.0.0.zip ,解压至E:\workspace\Mondrian

2. 把lib\mondrian.war解压到  {TOMCAT_HOME}\webapps\mondrain

3. Mondrian demo中数据库FoodMart默认的是access,  要移植到mysql中,用demo\FoodMartCreateData.sql,
在命令行窗口中输入如下脚本:
java -cp "lib\mondrian.jar;lib\log4j-1.2.9.jar;lib\eigenbase-xom.jar;lib\eigenbase-resgen.jar;lib\eigenbase-properties.jar;lib\mysql-connector-java-3.1.7-bin.jar" mondrian.test.loader.MondrianFoodMartLoader -tables -data -indexes  -jdbcDrivers="com.mysql.jdbc.Driver" -inputFile=demo\FoodMartCreateData.sql -outputJdbcURL="jdbc:mysql://localhost/foodmart?user=root&password="
注意:当前路径是E:\workspace\Mondrian.  运行需要的部分类包在mondrian-2.0.0-src.zip的lib目录中,需要加入mysql jdbc 驱动.  log4j-1.2.9.jar里面如果加入log4j.properties文件,可以查看运行时候的打印信息,否则看不到打印信息。

4. 在{TOMCAT_HOME}\webapps\mondrain目录, 
      打开mondrian.properties, 添加下面属性mondrian.jdbcDrivers=com.mysql.jdbc.Driver
       打开WEB-INF\web.xml, 修改2处connectString属性, Jdbc=jdbc:mysql://localhost/foodmart?user=root&#38;password=;JdbcDrivers=com.mysql.jdbc.Driver; 
       编辑WEB-INF\queries下面的 fourheir, mondrian, colors and arrows 4个jsp文件.
      <jp:mondrianQuery id="query01" jdbcDriver="com.mysql.jdbc.Driver" jdbcUrl="jdbc:mysql://localhost/foodmart?user=root&#38;password=" catalogUri="/WEB-INF/queries/FoodMart.xml">
posted @ 2006-01-09 22:36 Live-in Java 阅读(1457) | 评论 (2)编辑 收藏

仅列出标题
共7页: 上一页 1 2 3 4 5 6 7