文章列表
本文介绍了Java内存溢出的详细解决方案。本文总结内存溢出主要有两种情况,而JVM经常调用垃圾回收器解决内存堆不足的问题,但是有时仍会有内存不足的错误。作者分析了JVM内存区域组成及JVM设置虚拟内存的方式,从而给出了一系列解决方案。 一、内存溢出类型 1、java.lang.OutOfMemoryError: PermGen space JVM管理两种类型的内存,堆和非堆。堆是给开发人员用的上面说的就是,是在JVM启动时创建;非堆是留给JVM自己用的,用来存放类的信息的。它和堆不同,运行期内GC不会释放空间。如果web app用了大量的第三方jar或者应用有太多的class文件而恰 ...
- 2009-11-27 10:56
- 浏览 389
- 评论(0)
@echo off cls REM --- BEG MACHINE-DEPENDENT ---- set HOME_J2RE=C:\Program Files\Java\jdk1.5.0_17 REM --- END MACHINE-DEPENDENT ---- set HOME_JAVA=%HOME_J2RE%\bin\java set HOME_JAVA="%HOME_JAVA%" set ARG_MEMORY=-Xms128m -Xmx196m set PROP_POLICY=-Dorg.ragingcat.kst.uikeytool.polic ...
- 2009-11-13 10:39
- 浏览 540
- 评论(0)
@echo off cls REM --- BEG MACHINE-DEPENDENT ---- set HOME_J2RE=C:\Program Files\Java\jdk1.5.0_17 REM --- END MACHINE-DEPENDENT ---- set HOME_JAVA=%HOME_J2RE%\bin\java set HOME_JAVA="%HOME_JAVA%" set ARG_MEMORY=-Xms128m -Xmx196m set PROP_POLICY=-Dorg.ragingcat.kst.uikeytool.polic ...
- 2009-11-13 10:39
- 浏览 313
- 评论(0)
There are two types of JavaSript cookies- permanent, and session-only. The first one stores its information in a physical file on the client's computer called "cookie.txt", with the stored data "permanently" available. Session only cookies, on the other hand, stores information in ...
- 2009-11-11 16:16
- 浏览 608
- 评论(0)
用fileset 来过滤要删掉的目录和文件 <delete verbose="true" includeemptydirs="true"> <fileset dir="${buildDir}"> <include name="**/*"/> </fileset> </delete> 注:includeemptydirs 的意思是就算文件夹是空的,也同样删除。 这样就会避免使用像 <delet ...
- 2009-11-09 14:45
- 浏览 994
- 评论(0)
其实只要在写<Jar>标签的时候加入一句话,就可以把要用到的第三方的包加入到我们目标包里面去了 <jar destfile="${output.dir}/main.jar" > <zipgroupfileset dir="${lib.dir}" includes="*.jar" /> <fileset dir="${output.dir}\bin"></fileset> <!-- set mainfest infor ...
- 2009-11-09 14:15
- 浏览 886
- 评论(0)
居然要加这么多JAR
apacheds-core-1.0.2.jarapacheds-core-shared-1.0.2.jarapacheds-kerberos-shared-1.0.2.jarapacheds-protocol-changepw-1.0.2.jarapacheds-protocol-kerberos-1.0.2.jarapacheds-protocol-ldap-1.0.2.jarapacheds-protocol-ntp-1.0.2.jarapacheds-protocol-shared-1.0.2.jarapacheds-server-jndi-1.0.2.jarb ...
- 2009-10-25 23:12
- 浏览 1080
- 评论(0)
資料來源:http://louisyoo.blog.ccidnet.com/blog-htm-do-showone-uid-41414-type-blog-itemid-217488.html
前言 Java的路径问题,非常难搞。最近的工作涉及到创建和读取文件的工作,这里我就给大家彻底得解决Java路径问题。我编写了一个方法,比ClassLo ...
- 2009-07-15 23:12
- 浏览 608
- 评论(0)
Today I tried to use remote debugging with Eclipse and Tomcat.I usually use a Tomcat Sysdeo Plugin to run Tomcat inside Eclipse, but today I faced remote debugging.To run tomcat in remote debugging you can start it with commandcatalina jpda start
But this will start remote debugging using shared me ...
- 2009-06-25 14:12
- 浏览 852
- 评论(0)
struts2中用interceptor实现权限控制收藏
在jsp servlet中我们通常使用Servlet Filter控制用户是否登入, 是否有权限转到某个页面.在struts2中我们应该会想到他的拦截器(Interceptor), Interceptor在struts2中起着非常重要的作用. 很多struts2中的功能都是使用Interceptor实现的. 需求:简单的登入界面,让用户输入用户名,密码,记住密码(remember me). 如果用户选中remember me的话, 下次就不需要再登入了(使用cookie实现, 用需要点击logout取消remeber me功能). 如果 ...
- 2009-06-10 10:31
- 浏览 637
- 评论(0)
From http://en.wikipedia.org/wiki/List_of_HTTP_headers
- 2009-05-31 14:37
- 浏览 587
- 评论(0)
If you want to force pop up "Save File" dialog to ask user save file from server.
We need to set the several parameter toresponse.
the first is content type.
response.setContentType("application/pdf"); // the type is the file type you want to user to save.
Another is conten ...
- 2009-05-31 14:14
- 浏览 474
- 评论(0)
内容类型
内容类型(Content-Type),这个头部领域用于指定消息的类型。一般以下面的形式出现。
Content-Type: [type]/[subtype]; parameter
type有下面的形式。
Text:用于标准化地表示的文本信息,文本消息可以是多种字符集和或者多 ...
- 2009-05-31 14:11
- 浏览 539
- 评论(0)