Cannot find ./catalina.sh The file is absent or does not have execute permission This file is nee
摘要:从tomcat官网上下载了apache-tomcat-5.5.36.zip,在window xp系统里面解压以后,直接放在了linux服务器上。 进入tomcat/bin目录,执行启动的时候出现如下错误: [root@test bin]# ./startup.shCannot find ./cata
阅读全文
内存泄露java.lang.OutOfMemoryError: PermGen space解决方法
摘要:PermGen space的全称是Permanent Generation space,是指内存的永久保存区域,这块内存主要是被JVM存放Class和Meta信息的,Class在被Loader时就会被放到PermGen space中,它和存放类实例(Instance)的Heap区域不同,GC(Gar
阅读全文
项目集成单点登录
摘要:项目集成单点登录 1、web.xml集成单点 <?xml version="1.0" encoding="UTF-8"?> <web-appversion="2.5"xmlns="http://java.sun.com/xml/ns/javaee"xmlns:xsi="http://www.w3.o
阅读全文