文章列表
OutOfMemory
- 博客分类:
- tomcat
tomcat :
bin\catalina.bat
rem ----- Execute The Requested Command ---------------------------------------
set JAVA_OPTS=-Xms512m -Xmx512m
echo Using CATALINA_BASE: "%CATALINA_BASE%"
echo Using CATALINA_HOME: "%CATALINA_HOME%"
echo Using CATALINA_TMPDIR: "%CATAL ...
关于oracle分页
- 博客分类:
- oracle
1.根据rownum来分
select t2.* from (select t1.*, rownum rn from (select * from emp) t1 where rownum <= 4) t2 where rn >= 2
先说一下rownum理解ORACLE系统为查询结果分配的一个顺序编号,比如第一行为1,第二行为2,第三行为3,依此类推。
但查询的时候,你不能写成rownum > 2
http://www.cnblogs.com/zjrstar/archive/2006/08/31/491090.html
2.根据分析函 ...
关于quartz作业调度
- 博客分类:
- quartz
准备jar包:
1.quartz-all-1.6.0.jar
2.commons-collections-xxx.jar
package quartz;
import java.text.ParseException;
import org.quartz.CronTrigger;
import org.quartz.Job;
import org.quartz.JobDetail;
import org.quartz.Scheduler;
import org.quartz.SchedulerException;
import org.quartz.Sc ...
关于struts2源码解读
- 博客分类:
- struts
http://wenku.baidu.com/view/ad421874a417866fb84a8e75.html###
关于spring源码解读
- 博客分类:
- spring
Spring源代码解析(一):IOC容器:http://www.iteye.com/topic/86339 Spring源代码解析(二):IoC容器在Web容器中的启动:http://www.iteye.com/topic/86594 Spring源代码解析(三):Spring JDBC:http://www.iteye.com/topic/87034 Spring源代码解析(四):Spring MVC:http://www.iteye.com/topic/87692 Spring源代码解析(五):Spring AOP获取Proxy:http://www.iteye.com/topic/8818 ...
http://blog.csdn.net/wh62592855/article/details/4784130
start with ... connect by prior
该语句实现递归查询
select ... from <Table_Name>
where <Conditional-1>
start with <Conditional-2>
connect by prior <Conditional-3>
<Conditional-1>过滤参数,对查询返回结果的过滤
<Conditional-2 ...
关于IE启动时加 -nomerge参数的问题
- 博客分类:
- 杂七杂八
IE启动时会沿用之前打开IE的那个会话(session),所以当你想用不同用户登录时,会登不上去,只会同一个用户登录。
解决方法是加上属性 -nomerge
即:
"C:\Program Files\Internet Explorer\iexplore.exe"
-nomerge
struts关于文件上传下载
- 博客分类:
- struts
下载:
public class FunctionAct extends BaseAction implements ServletContextAware {
private String filename;
private String mimeType;
private java.io.InputStream inStream;
private ServletContext context;
public String function_down() throws Exception {
mimeType = context.g ...
oracle查询的一些笔记
- 博客分类:
- oracle
group by 和 having 子句
group by 用于对查询的统计。
having 用于限制分组显示结果。
比如:显示每个部门的平均工资和最高工资。
select avg(sal),max(sal),deptno,job from emp group by deptno,job;
select deptno,avg(sal),max(sal) from emp group by deptno having avg(sal) < 2000 ;
struts关于Interceptor
- 博客分类:
- struts
使用struts2拦截器必须实现 com.opensymphony.xwork2.interceptor.Interceptor
public class PremissionInterceptor implements Interceptor{
public void destroy() {
}
public void init() {
}
public String intercept(ActionInvocation arg0) throws Exception {
return null;
}
}
struts配置:
...
struts关于类型转换
- 博客分类:
- struts
局部:
public class DateConverter extends DefaultTypeConverter {
private SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
public Object convertValue(Map<String, Object> context, Object value,
Class toType) {
if (toType != java.util.Date.class)
throw new ...
struts关于全局资源文件
- 博客分类:
- struts
资源文件命名格式
name_language_country.properties
name_language.properties
name.properties
比如:
name_zh_CN.properties
name_en_US.properties
如果没用myeclipse 自动转换工具,可用jdk的 native2ascii 转换成utf码,即:
native2ascii 源文件.properties 目标文件.properties
资源文件访问取值:
<constant name="strut ...
oracle 数据库导入导出
- 博客分类:
- oracle
导出命令:
exp bs/bs@orcl file=d:\daochu.dmp
如果执行时报“未知命令 其余行忽略” 错误,请在 exp 命令前面加 $ ,即:
$exp bs/bs@orcl file=d:\daochu.dmp
导入命令:
$imp bs/bs@orcl file=d:\daochu.dmp
导入前最好把表都删除。
如果只想导入其中某几张表,只需在后边加入 tables = (table1,table2...)
web.xml中listener用法
- 博客分类:
- servlet
引用Listener实际上跟load-on-startup serlvet差不多,但区别是它不会对请求进行处理,它随服务启动而启动,比servlet启动要早。
Listener用法:
1.实现ServletContextListener接口
2.实现contextInitialized(),contextDetory()方法。
hibernatef二级缓存及查询缓存
- 博客分类:
- hibernate
hibernate二级缓存,即跨session的sessionFactory缓存。
在hibernate.cfg.xml文件中加入以下配置(以ehcache为例):
<property name="cache.use_second_level_cache">true</property>
<property name="cache.provider_class">net.sf.ehcache.hibernate.EhCacheProvider</property>
在类的映射文件 ...