- 浏览: 5348 次
- 性别:
- 来自: 北京
最新评论
文章列表
前几天,在客户现场,DWR报了“无法获得连接”的错误,回来后在tomcat上配了数据库连接池。记录一下配置的步骤,备用!
一 在apache-tomcat-6.0.14\conf\context.xml中Context标签内增内以下内容:
中Context标签内增内以下内容:
<Resource name="jdbc/aaa"
auth="Container"
...
Tomcat内存溢出的原因 在生产环境中tomcat内存设置不好很容易出现内存溢出。造成内存溢出是不一样的,当然处理方式也不一样。 这里根据平时遇到的情况和相关资料进行一个总结。常见的一般会有下面三种情况: 1.OutOfMemoryError: Java heap space 2.OutOfMemoryError: PermGen space 3.OutOfMemoryError: unable to create new native thread. Tomcat内存溢出解决方案 对于前两种情况,在应用本身没有内存泄露的情况下可以用设置tomcat jvm参数来解决。(-Xms ...
这两天在写一个统计功能,有时数量过多时样式不美观,于是在DIV上加上了:
<div id="resultlistarea" style= "width:99%;overflow-x:auto; "> 在IE8下显示正常
<!--StartFragment -->
<!--StartFragment -->
但在IE8兼容视图下多出了垂直滚动条 后将代码改为: <div id="resultlistarea" style= "width:99%;height:au ...
1概念2指令if, else, elseif switch, case, default, breaklist, break include Import compress escape, noescape assign global setting macro, nested, returnt, lt, rt 3一些常用方法或注意事项 表达式转换类 数字循环 对浮点取整数 给变量默认值 判断对象是不是null 常用格式化日期 添加全局共享变量数据模型 直接调用java对象的方法 字符串处理(内置方法) 在模板里对sequences和hashes初始化 注释标志 sequences内置方法 ha ...
1 - Tomcat Server的组成部分
1.1 - Server
A Server element represents the entire Catalina servlet container. (Singleton)
1.2 - Service
A Service element represents the combination of one or more Connector components that share a single EngineService是这样一个集合:它由一个或者多个Connector组成,以及一个Engine,负责处理所有Conne ...