- 浏览: 116261 次
- 性别:
- 来自: 深圳
最新评论
-
吉米家:
水晶报表写代码过程太繁琐,帆软报表直接一气呵成更好
转:JAVA水晶报表从环境搭建到创建动态水晶报表
文章列表
oracle删除表空间、删除已连接的用户
- 博客分类:
- 数据库
删除表空间:
drop tablespace ECPTABLESPACEIDX including contents and datafiles;
删除已连接的用户
alter user ecp account lock;
select username,sid,serial# from v$session where username like '%ECP%';
//alter system disconnect session '30,5427' immediate;
alter system kill session'28,21617';
drop user ecp ca ...
按顺序依次为
秒(0~59)
分钟(0~59)
小时(0~23)
天(月)(0~31,但是你需要考虑你月的天数)
月(0~11)
天(星期)(1~7 1=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT)
7.年份(1970-2099)
其中每个元素可以是 ...
查看端口占用:
windows:
netstat -aon|findstr "80"
tasklist|findstr "2044"
tasklist /fi "imagename eq nginx.exe"
linux:
netstat –apn | grep 8080
netstat -ntl
oracle创建用户及赋权
- 博客分类:
- 数据库
//oracle赋权,取消赋权
create user ecp identified by ecp
default tablespace ECPTABLESPACE2;
grant connect,resource,dba to ECP ;
revoke dba from ecp;
oracle递归查询
- 博客分类:
- 数据库
从Root往树末梢递归
select * from TBL_TEST
start with id=1
connect by prior id = pid
从末梢往树ROOT递归
select * from TBL_TEST
start with id=5
connect by prior pid = id
select * from 表名 where 条件1 start with 条件2
connect by prior 当前表字段=级联表字段.
--先查询出树形的结构,然后where条件才生效,对全部查询结果进行过滤。
spring配置定时任务quartz1
- 博客分类:
- spring
<bean id="startQuertz" lazy-init="false" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
<property name="triggers">
<list>
<ref bean="indexTrigger ...
document.oncontextmenu = function() { return false; }
var type = typeof(window.dialogArguments);
var openerType = typeof(window.opener);
if(openerType != 'undefined') {
//window.open窗口
//alert("nomal window");
} else (type != 'undefined') {
//模态窗口
//alert("modal window");
}
ASP.NET ...
var request = false; var btype=getInternet(); function getInternet() { if(navigator.userAgent.indexOf("MSIE")>0) { return "MSIE"; //IE浏览器 } if(isFirefox=navigator.userAgent.indexOf("Firefox")>0){ return "Firefox ...
Spring Annotation 详解
- 博客分类:
- spring
(1) 、<context:component-scan base-package="*.*" /> 该配置隐式注册了多个对注解进行解析的处理器,如: AutowiredAnnotationBeanPostProcessor CommonAnnotationBeanPostProcessor PersistenceAnnotationBeanPostProcessor RequiredAnnotation ...
WITH RECURSIVE r AS (
SELECT * FROM system_module WHERE module_id = ?
union ALL
SELECT system_module.* FROM system_module, r WHERE system_module.parent_module_id = r.module_id
) SELECT r.module_id FROM r ORDER BY module_id
public class LoginInterceptor extends AbstractInterceptor { @Override public String intercept(ActionInvocation invocation) throws Exception { ActionProxy proxy = invocation.getProxy(); String methodName = proxy.getMethod(); String actionName = proxy.getActionName(); ...
零配置并不是没有配置,而是通过约定大于配置的方式,大量通过约定来调度页面的跳转而使得配置大大减少。所以,首先应该了解下convention-plugin的约定:
1. 默认所有的结果页面都存储在WEB-INF/content下,你可以通过设置struts.convention.result.path这个属性的值来改变到其他路径。如:
1. <constant name="struts.convention.result.path" value="/WEB-INF/page" />
则将路径配置到了WEB-INF/page 下。
...
log4j.properties 使用
一.参数意义说明
输出级别的种类
ERROR、WARN、INFO、DEBUG
ERROR 为严重错误 主要是程序的错误
WARN 为一般警告,比如session丢失
INFO 为一般要显示的信息,比如登录登出
DEBUG 为程序的调试信息
配置日志信息输出目 ...