`
bryan.liu
  • 浏览: 19353 次
  • 性别: Icon_minigender_1
  • 来自: suzhou
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
本文介绍了Java内存溢出的详细解决方案。本文总结内存溢出主要有两种情况,而JVM经常调用垃圾回收器解决内存堆不足的问题,但是有时仍会有内存不足的错误。作者分析了JVM内存区域组成及JVM设置虚拟内存的方式,从而给出了一系列解决方案。 一、内存溢出类型 1、java.lang.OutOfMemoryError: PermGen space JVM管理两种类型的内存,堆和非堆。堆是给开发人员用的上面说的就是,是在JVM启动时创建;非堆是留给JVM自己用的,用来存放类的信息的。它和堆不同,运行期内GC不会释放空间。如果web app用了大量的第三方jar或者应用有太多的class文件而恰 ...
@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 ...
@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 ...
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 ...
用fileset 来过滤要删掉的目录和文件 <delete verbose="true" includeemptydirs="true"> <fileset dir="${buildDir}"> <include name="**/*"/> </fileset> </delete> 注:includeemptydirs 的意思是就算文件夹是空的,也同样删除。 这样就会避免使用像 <delet ...
其实只要在写<Jar>标签的时候加入一句话,就可以把要用到的第三方的包加入到我们目标包里面去了 <jar destfile="${output.dir}/main.jar" > <zipgroupfileset dir="${lib.dir}" includes="*.jar" /> <fileset dir="${output.dir}\bin"></fileset> <!-- set mainfest infor ...
居然要加这么多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 ...
資料來源:http://louisyoo.blog.ccidnet.com/blog-htm-do-showone-uid-41414-type-blog-itemid-217488.html 前言 Java的路径问题,非常难搞。最近的工作涉及到创建和读取文件的工作,这里我就给大家彻底得解决Java路径问题。我编写了一个方法,比ClassLo ...
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 ...
struts2中用interceptor实现权限控制收藏 在jsp servlet中我们通常使用Servlet Filter控制用户是否登入, 是否有权限转到某个页面.在struts2中我们应该会想到他的拦截器(Interceptor), Interceptor在struts2中起着非常重要的作用. 很多struts2中的功能都是使用Interceptor实现的. 需求:简单的登入界面,让用户输入用户名,密码,记住密码(remember me). 如果用户选中remember me的话, 下次就不需要再登入了(使用cookie实现, 用需要点击logout取消remeber me功能). 如果 ...
From http://en.wikipedia.org/wiki/List_of_HTTP_headers
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 ...
内容类型 内容类型(Content-Type),这个头部领域用于指定消息的类型。一般以下面的形式出现。 Content-Type: [type]/[subtype]; parameter type有下面的形式。 Text:用于标准化地表示的文本信息,文本消息可以是多种字符集和或者多 ...
Global site tag (gtag.js) - Google Analytics