上一页 1 ··· 50 51 52 53 54
摘要: 分析路径错误原因:截图如下 项目正确的url应该是......./jsp/postBlog.action因为我urlrewrite.xml中 postType 的 rule为<from>^/jsp/postType/(.*)/(.*)\b$</from>所以点击跳转后,postType位置多加了两级目录 "/postType" 后的 " /1" 后,所以,css路径引用( href=" .....")只要加 . . / . . /问题就可以解决,所以,问题知道了,改就好改了。以我项目为例加代码如String p 阅读全文
posted @ 2013-04-19 15:44 君子笑而不语 阅读(551) 评论(0) 推荐(0) 编辑
摘要: String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; <base href=" <%=basePath%>">这个语句是用来拼装当前网页的相对路径的。<base href="...">是用来表明当前页面的相对路径所使用的根路径的 阅读全文
posted @ 2013-04-19 13:03 君子笑而不语 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 问题url重写,用户输入一个随意url可能导致出现死循环,如http://xxx/xxx/ddd.!@#$结果如原因是因为正则表达式不够精确导致此结果:本人之前采用: /jsp/postBlog /jsp/postBlog.action 的规则,导致输入http://localhost:8080/iustest/jsp/postBlog.html造成死循环解决方法:更改rule ^/jsp/postBlog$ /jsp/postBlog.action 问题解决。输入http://localhost:8080/iustest/jsp/postBlog.html报404错误,不会进入死循环了分析原 阅读全文
posted @ 2013-04-18 19:17 君子笑而不语 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 文章来源:http://www.it300.com/article-5319.html现在url重写技术用的越来越广泛了,很高兴今天和各位网友分享一下: 首先我们要从网上下一个UrlReWriter jar包 现在地址进不了,我这里有一个3.0版本的,文章底有下载地址,大家可以去下载 引用jar包后,我们需要配制web.xml配制文件,配制如下:<filter> <filter-name>UrlRewriteFilter</filter-name> <filter-class>org.tuckey.web.filters.urlrewrite.U 阅读全文
posted @ 2013-04-16 10:42 君子笑而不语 阅读(198) 评论(0) 推荐(1) 编辑
摘要: linux下jdk,tomcat,mysql安装 阅读全文
posted @ 2013-04-09 21:09 君子笑而不语 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 所谓事务是用户定义的一个操作序列,这些操作要么全做要么全不做,是一个不可分割的工作单位。 事务的开始与结束可以由用户显式控制。如果用户没有显式地定义事务,则由DBMS按缺省规定自动划分事务。在SQL语言中,定义事务的语句有三条: BEGIN TRANSACTION COMMIT ROL... 阅读全文
posted @ 2013-04-08 13:37 君子笑而不语 阅读(387) 评论(0) 推荐(0) 编辑
摘要: Today,I took an exercise about the -Xms main memory in jvm mechine.My english is very poor,fuck. Let's set -Xms=64M -Xmx=512MThen I open jconsole and listenning the pid in process.then we seethe follow picture.we see that while the value of main memory which is being aliving will get down when n 阅读全文
posted @ 2013-04-08 13:24 君子笑而不语 阅读(320) 评论(0) 推荐(0) 编辑
摘要: ellipse 过长 省略 阅读全文
posted @ 2013-04-08 13:20 君子笑而不语 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 此文记录Class文件中 类索引(this_class),父类索引(super_class),接口索引集合(interfaces)表示方法。 类索引,类索引 都是一个u2类型的数据,接口索引集合 是一组u2类型的数据集合(因为类是单继承,多实现)。例子:package cn.tao;public class TestClass { private int m; public int inc(int m){ return m+1; }}TestClass.class 内容如下(16进制查看)图1 图1中,从偏移地址0x000000CE开始3个u2类型的值0x0001,0x0003,0x0000, 阅读全文
posted @ 2013-04-08 13:15 君子笑而不语 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 原理是 : 通过动态控制 selected=”selected“这句话的有无来达到效果。 阅读全文
posted @ 2013-04-01 15:48 君子笑而不语 阅读(821) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54