- 浏览: 27007 次
- 性别:
- 来自: 武汉
最新评论
文章列表
Java代码
<action name="edLogin" class="reviewerLoginAction" method="toEdLogin">
<result name="input">/login/editorlogin.jsp</result>
<result name="failure">/error.jsp</result>
< ...
java.lang.IllegalArgumentException: attempt to create saveOrUpdate event with null entity
2011-05-23 11:11
HTTP Status 500 -
--------------------------------------------------------------------------------
type Exception report
message
description The server encountered an internal error () tha ...
org.hibernate.hql.ast.QuerySyntaxException: user is not mapped [from user]1、hibernate.cfg.xml少了很多映射.为什么会少呢?因为我的都是拷贝过来的。不是自动生成的。另外 hibernate.cfg.xml,要放在根目录下。
把你要映射的都写上去。
<mapping resource="....包名.../Companyinfo.hbm.xml" />
<mapping resource="....包名.../Companyinfo.hbm.xml" ...
java.io.FileNotFoundException: \WEB-INF\petstore.log (系统找不到指定的路径。)
在log4j的配置文件里加入:#log4j.appender.logfile.File=${petstore.root}/WEB-INF/petstore.log
javascript 设置多少秒后自动关闭窗口<div id="info">本窗口将在3秒后自动关闭</div> <input type="button" value="关闭窗口" onclick=&qu ...
- 2009-04-04 10:57
- 浏览 1341
- 评论(0)
用正则表达式限制只能输入中文:onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,''))" 用正则表达式限制只能输入全角字符: onkeyup="value=va ...
- 2009-03-31 15:16
- 浏览 3557
- 评论(0)
一、 写jsp页面的时候,在struts2中,用的是s标记,先引入标记: <%@ taglib prefix="s" uri="/struts-tags"%> 二、 struts2的标签和1是完全不同的。 struts2的标签分为两大类:非UI标志和UI标志 struts1 将标志库按功能分成HTML ...
- 2009-03-30 22:53
- 浏览 3298
- 评论(0)