`
文章列表
Javac命令行参数-encoding指定了java源文件使用的编码Java命令行参数-Dfile.encoding指定了class文件使用的编码
当Adobe、Microsoft、Sun等一系列巨头开始表现出对”开源”的青睐时,”开源”的时代即将到来! 最初来自:sinoprise.com/read.php?tid-662-page-e-fpage-1.html(遗憾的是这个链接已经打不开了),我基本未改动,只是进行了一些排版和整理 ...
查询字段是否有数字:(oracle10g以上) select * from up_org_unit uwhere REGEXP_LIKE(u.unit_id,'^[a-z]|[A-Z]+$')
对于AOP有三个对象: Advice:  通知,before advice,AfterReturningAdvice,ThrowAdvice,MethodBeforeAdvice Pointcut: 表示在什么地方加入通知,比如要拦截那个方法等等. Advisor:通知器,连接前两者
from spring in action:         target:代理的目标类        proxyInterfaces:代理类应该实现的接口列表        interceptorNames:需要应用到目标对象上的通知Bean的名字.可以是拦截器,advisor和其他通知类型的名字。这个属性必须按照在BeanFactory中的顺序设置        singleton:        aopProxyFactory:使用的ProxyFactoryBean实现。Spring带有两种实现(JDK动态代理和CGLIB)。通常不需要使用这个属性        exposeProxy: ...
由于在查询出的每条记录里,都有unit_id和par_unit_id,所以只需要找出在unit_id里没有的par_unit_id,则该条记录为根节点,代码如下: public List getRootUnits2(List list){ List rootList = new ArrayList(); for(int i=0; i < list.size(); i++){ boolean isRoot = true; for(int j=0; j< list.size();j++){ Map parMap = (Map)list.get(i) ...
要设置div居中,光设置align=center是不行的必须设置margin-right:auto; margin-left:auto; <body  style="border: 0;margin: 0px;" > <div style="width:945px;height:100%;border:0px;margin-right:auto; margin-left:auto;" align="center"> <div class="MainMenu" style=" ...
今天在启动应用时发现一个sql执行非常之慢,几乎需要一小时都执行不完. Select *  From v_Sm_Org_Relation v Where v.Unit_Id In (Select Distinct Customer_Id                       From v_Out_Bis_Md_Org_Rel_Child                      Where Qryorg_Rel_Id In (-300347))  其中视图v_sm_org_relation内层视图如下: Select To_Number(Org.Id) Org_Rel_Id,      ...
public String getApplicationContextPath(CommonUploadAware myUpload){ HttpServletRequest request = myUpload.getM_request(); // System.out.println("getRealContextPath" + EAPConfigHelper.getRealContextPath(request.getSession().getServletContext())); // System.out.println(&q ...
<beans> <!-- 定时服务定义 --> <bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">  <!-- 自动启动 -->  <property name="autoStartup">   <value>true</value>  </property>  <property name="triggers">   <list ...
<beans> <!-- 任务调度对象 -->    <bean id="mainJob" class="org.springframework.scheduling.quartz.JobDetailBean">     <!-- 运行的类 -->  <property name="jobClass">   <value>com.neusoft.midea.components.export.dwexport.job.MainJob</value>  & ...
<!-- tomcat顶层容器,由 org.apache.catalina.Server 接口定义,包含多个service元素 --> <Server port="8005" shutdown="SHUTDOWN" debug="0"> <!-- tomcat顶层容器,由 org.apache.catalina.Service 接口定义, 默认实现为:org.apache.catalina.core.StandardService 包含多个conn ...
应用程序中使用好日志(Logging)功能能够方便的调试和跟踪应用程序任意时刻的行为和状态。在大规模的应用开发中尤其重要,毫不夸张的说,Logging是不可或缺的重要组成部分。那么我们需要自己开发一套Logging API吗?答案是否 ...
适应的浏览器版本不同,同时在使用的过程中要注意attachEvent方法          按钮onclickaddEventListener方法    按钮click两者使用的原理:可对执行的优先级不一样,下面实例讲解如下:attachEvent方法,为某一事件附加其它的处理事件。(不支持Mozilla系列)addEventListener方法 用于 Mozilla系列举例: document.getElementById("btn").onclick = method1;document.getElementById("btn").onclick = ...
1.javascritpt中变量的生存周期只有两个:函数内的局部执行期间和函数外全局执行期间2.对象系统的继承特性有三种实现方案:包括基于类,基于原型,基于元类.JavaScript使用原型继承来实现对象系统,所以JavaScript没有类,而采用一种名为构造器的机制来实现类的某些功用3.原型也是一个对象实例,原型的含义是:如果构造器有一个原型对象A,则由该构造器创建的实例都必然复制自A
Global site tag (gtag.js) - Google Analytics