- 浏览: 28859 次
最新评论
-
chenzheng8975:
未完结啊!!!!!!!!!!!!!!
struts2标签
文章列表
com.sun.org.apache.xerces.internal.dom.DeferredTextImpl cannot be cast to org.w3
- 博客分类:
- exception xml
public class DomXmlTest{
public static void main(String[] args) {
DocumentBuilderFactory dbf=DocumentBuilderFactory.newInstance();
try {
DocumentBuilder db=dbf.newDocumentBuilder();
Document doc=db.parse("test/url.xml");
NodeList ol=doc.getElementsByTagName("he ...
CREATE TABLE student
(
stu_id NUMBER,
stu_name NVARCHAR2(20),
stu_age NUMBER(3) DEFAULT 15,
stu_sex NUMBER(1),
CONSTRAINT PK_stu_id PRIMARY KEY (stu_id)
);
COMMENT ON TABLE student IS '学员';
COMMENT ON COLUMN student.stu_id IS '主键';
CREATE TABLE te ...
log4j.properties支持中文eclipse插件propedit
ex : E:\workspace\Log4jHelloWorld
level:DEBUG < INFO < WARN < ERROR < FATAL
Log4j和slf4j入门教程(私塾在线)视频
#【log4j都是给log4j用的】.【appender目的地/logger控制单元 本质】
#appender【变量名】.【给这个变量的setter】
#Appender javaee.File=new org.apache.log4j.DailyRollingFileA ...
异常信息:
ERROR – failed to lazily initialize a collection of role: com.dudu.pojo.User.roles, no session or session was closed
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role:
原因及解决方法:
转换json数据时,且数据存在级联关系,只要实体类有getXXX()方法,不管是否设置为lazy,它都会级联取出转换为json数据 ...
struts2+json
java.lang.ClassNotFoundException: org.apache.commons.lang.xwork.StringUtils
java.lang.ClassNotFoundException: org.apache.commons.lang3.xwork.StringUtils
刚开始用的是struts2-json-plugin-2.1.8.1.jar,struts-2.3.3
改为struts2-json-plugin-2.2.3.jar就正常了,但后来测试别的项目又报同样的错。。
后来发现貌似struts2 ...
struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<include file="stru ...
创建用户
oracle对表空间 USERS 无权限
alter user 用户名 quota unlimited on users;
//创建临时表空间
create temporary tablespace test_temp tempfile 'E:/oracle/product/10.2.0/oradata/testserver/test_temp01.dbf' size 32m autoextend on next 32m maxsize 2048m extent managem ...
dwr常用方法
dwr.util.removeAllOptions(id)//移除id值的option值
dwr.util.addOptions(id,array)//将array值添加到id值的option中 array可为数组,list,map,set
若option添加的array为map集合,则value值为key值
dwr.util.addRows(
id, array, cellfuncs, [options] )//cellfuncs为循环接收array每个值的回调函数
例:function changeTables(){
serv ...
eclipse 在部署项目是需要将所有jar包拷入lib目录下,用路径导入是不能运行网络项目的,这都没发现,
<Host>
<Context path="/myweb" docBase="d:\web"/>//非tomcat目录使用此标签
</Host>
用MyEclipse的朋友伤不起呀。MyEclipse自动部署会自动从路径导入jar包。。。
dwr竟然就给个Error,其他什么信息都没。。。花费了我一下午的时间,可恨。。。
Blob 二进制大对象 Clob字符串大对象
public void save(Login login,String loginPath,String description) throws IOException{
InputStream in=this.getClass().getResourceAsStream(loginPath);
byte[] buff=new byte[in.available()];
in.read(buff);
in.close();
//字节数组转换为Blob对象
login.setImage(Hibernate ...
subset标签用于取得集合的子集,该标签的底层通过org.apache.Struts2.util.Subset.IteratorFilter类提供实现。使用subset标签可以指定如下几个属性:
<script type="text/javascript">
function closeIt()
{
return "Any string value here forces a dialog box to \n" +
"appear before closing the window.";
}
window.onbeforeunload = closeIt;
</script>
或者
<script type="text/javascript& ...
char类型: 对英文(ASCII)字符占用1个字节,对一个汉字占用2个字节,CHAR存储定长数据很方便,CHAR字段上的索引效率级高,比如定义 char(10),那么不论你存储的数据是否达到了10个字节,都要占去10个字节的空间。因为是固定长度,所以速度效率高。
Varchar类型:Varchar 的类型不以空格填满,比如varchar(100),但它的值只是"qian",则它的值就是"qian"而char 不一样,比如char(100),它的值是"qian",而实际上它在数据库中是"qian ...
c:set标签有两种不同的设置:var和target。
var“版本”用于设置作用域属性,target“版本”用于设置bean属性或Map值。
这两个版本都有两种形式:有体和没有体。有体的只是放入值的另一种途径。
★ var“版本”
<c:set var="userLevel" scope="session" value="Cowboy"/>
<c:set var="fido" value="${person.dog}"/>
substr 方法返回一个从指定位置开始的指定长度的子字符串。stringvar.substr(start [, length ])参数stringvar必选项。要提取子字符串的字符串文字或 String 对象。start必选项。所需的子字符串的起始位置。字符串中的第一个字符的索引为 ...