- 浏览: 21863 次
- 性别:
- 来自: 北京
最新评论
-
duanjudy:
你的property在开始或者结尾少了尖括号。。
Element type "property" must be followed by either attribute specifications, ">"
文章列表
今天遇到这样的错误,折腾了半天:
java.lang.IllegalStateException org.apache.catalina.connector.ResponseFacade.sendError(ResponseFacade.java:407) org.apache.catalina.servlets.DefaultServlet.serveResource(DefaultServlet.java:701) org.apache.catalina.servlets.DefaultServlet.doGet(DefaultServlet.java:339) org.apach ...
今天做项目的时候 想到一个问题,记录一下,
request.getSession().setAttribute是对于每个会话的,那么request.setAttribute注入的状态会不会跨会话呢(也就是不同的会话会不会共享同一个request.setAttribute)。
使用request.getSession().setAttribute设置的值在整个会话过程中都会保持,而不会因为使用sendRedirect跳转而丢失,而request.setAttribute设置的值,只有使用forword页面跳转值才不会丢失,而使用sendRedirect跳转值会丢失,该值与会话无关。
今天郁闷半天,最后发现使用了
<input type="submit" name="submit" value="登录">
之后再使用
document.getElementById("login").submit();
就无法submit。
例如:
<script type="text/javascript">
function form_submit(){
document.getElementById('login').action="&quo ...
查了一些关于clob和blob的区别,大致记得是:clob适宜于存储大文本文件,而blob适宜于存储图片二进制文件,我还为 了记忆,理解为character和binary。
可是,今天动手实验了一下发现,文本文件如果不仅仅是上传存储,还需要下载使用的话,还是使用blob字段存储比较好,因为使用clob存储的话,在上传的时候是按照string操作的,文件内部的格式就变了,比如:没有了原文件的换行。
<property name="content" type="org.springframework.orm.hibernate3.support.BlobByt ...
Caused by: org.dom4j.DocumentException: Error on line 15 of document : Element type "property" must be followed by either attribute specifications, ">" or "/>". Nested exception: Element type "property" must be followed by either attribute specifications ...
label {
display:inline-block;
width:90px;
text-align:left;
padding:1px;
margin:1px;
color:#000;
}
在图片背景的css里加上以下语句:
filter:alpha(opacity=80); 支持IE
-moz-opacity:0.80; 支持FF
opacity:0.80; 支持w3c标准
jsp报错,最后发现就是jsp页面中变量取值有问题,我这次是因为action中已经把session中的值 删除了,我又取值了,所以就出错了。嘿嘿。。。
org.apache.jasper.JasperException: java.lang.NullPointerException
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:491)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWra ...
这两天使用asp从access导出数据,搜集的一些资料,方便以后用。
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
< ...
客户要求后台直接点击修改数据,使用jquery可以很容易实现,不过过程中还不是那么顺利,调试的过程中,发现要引入js脚本,必须使用type="text/javascript"而不是language="javascript"或者type="javascript"。
1.这里为了方便演示,就静态的显示数据了;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xh ...
这几天做asp总是看到关于php的资料,今天配置了一下php+apache,按照正常的步骤配置完成后,无法启动apache,提示:
"Cannot load C:/php/php5apache2.dll into server"
"The requested operation has failed"
查资料发现apache2.2以上版本 配置LoadModule 为/php5apache2_2.dll。
function getUnique(someArray)
{
tempArray=someArray.slice(0);//复制数组到临时数组
for(var i=0;i<tempArray.length;i++)
{
for(var j=i+1;j<tempArray.length;)
{
if(tempArray[j]==tempArray[i])
//后面的元素若和待比较的相同,则删除并计数;
//删除后,后面的元素会自动提前,所以指针j不移动
{
tempArray.splice(j,1);
} ...