`
lan13217
  • 浏览: 497681 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论
文章列表

myecllispe config

    博客分类:
  • ide
myecllispe config

ext CSS样式

Ext Core 修改CSS。 addClass 轻松地为一个元素添加样式: Ext.fly('elId').addClass('myCls'); // 加入元素的'myCls'的样式 radioClass 添加一个或多个className到这个元素,并移除其所有侧边(siblings)节点上的同名样式。 //为元素添加'myCls'在所有侧边元素上删除'myCls'样式 // all sibilings. Ext.fly('elId').radioClass('myCls'); removeClass 移除元素身上一个或多个的CSS类。 Ext.fly(' ...
sql分组查询最大记录 1. select distinct first_value(emp_id) over(partition by emp_code order by tm.last_modify_tm desc) from employee tm 2. select * from (select max(t.created_tm) as maxid,emp_code from EMPLOYEE t where t.valid_flg = 1 group by t.emp_code) mte l ...
“||”.split(“\\|”) [] “||”.split(“\\|”,-1) ["","",""]
命令:sqlplus 用户名/密码@ip地址[:端口]/service_name [as sysdba] sqlplus mrsUSER/mrsUSER@10.0.13.244/DEDICATED as sysdba set autotrace on set linesize 1000 set timing on

JRebel config

    博客分类:
  • Java
http://zeroturnaround.com/software/jrebel/features/frameworks/   JVM Settings,加入以下参数 -javaagent:D:\jrebel.jar 这里自行修改jrebel.jar正确的路径 -noverify     JRebel’s integration features with other frameworks are implemented as isolated plugins. Most of the plugins are enabled by default (see notificat ...

java反编译

http://jd.benow.ca/
win7(xp)中的系统字体分为"显示"和"隐藏"两种状态 当为"隐藏"状态时,其它软件程序就无法找到该字体。 解决办法是把要使用的系统字体设为显示。 如:在C:/windows/Fonts中设置Courier New 字体为显示就可以了 如在Fonts文件夹中没用找到Courier New,没用找到可以直接将在其它人的电脑中拷贝下来。这样在eclipser中将显示Courier New字体没
Source not found might be legitimate for dynamically loaded code (e.g. Maven). There are three workarounds known to me (after months of search): Connect to a running JVM with the debugger and you will see the code. Use Dynamic Source Lookup plugin for Eclipse from here: https://github.c ...
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <grou ...
package org.xxx.app.web; import java.io.IOException; import java.util.HashMap; import java.util.Map; import freemarker.core.Environment; import freemarker.template.ObjectWrapper; import freemarker.template.TemplateDirectiveBody; import freemarker.template.TemplateDirectiveModel; import ...
HWM的一些特性   1 oracle用HWM来界定一个段中使用的块和未使用的块。   当我们创建一个表:A时,ORACLE就会为这个对象分配一个段.在这个段中,即使我们未插入任何记录,也至少有一个区(64bit,也就是8个块)被分配,第一个区的第一个块就称为段头(SEGMENT HEADE),段头中就储存了一些信息,基中HWM的信息就存储在此.此时,因为第一个区的第一块用于存储段头的一些信息,虽然没有存储任何实际的记录,但也算是被使用,此时HWM是位于第2个块.当我们不断插入数据到A后,第1个块已经放不下后面新插入的数据,此时,ORACLE将高水位之上的块用于存储新增数据,同时,HWM本身也向 ...
java -Dhttp.proxyHost=proxyhostURL -Dhttp.proxyPort=proxyPortNumber -Dhttp.proxyUser=someUserName -Dhttp.proxyPassword=somePassword HelloWorldClass ----------------------------------------------- -DproxySet=true -DsocksProxyHost=127.0.0.1 -DsocksProxyPort=1080 public static void main( ...
第一步 yum update wget http://dl.iuscommunity.org/pub/ius/stable/Redhat/6/x86_64/epel-release-6-5.noarch.rpm wget http://dl.iuscommunity.org/pub/ius/stable/Redhat/6/x86_64/ius-release-1.0-11.ius.el6.noarch.rpm rpm -Uvh epel-release-6-5.noarch.rpm rpm -Uvh ius-release-1.0-11.ius.el6.noarch.rpm 第二步 ...
select sid,serial#,v.* from v$session v where sid in (select sid from v$lock where id1= (select object_id from user_objects where object_name='TABLE_NAME')); --删除这个session alter system kill session '114 ...
Global site tag (gtag.js) - Google Analytics