blogjava-凯发k8网页登录

blogjava-凯发k8网页登录http://www.blogjava.net/rabbit/学习笔记zh-cnsat, 08 apr 2023 20:42:03 gmtsat, 08 apr 2023 20:42:03 gmt60tips悬停http://www.blogjava.net/rabbit/archive/2014/05/07/413378.htmlrabbitrabbitwed, 07 may 2014 14:23:00 gmthttp://www.blogjava.net/rabbit/archive/2014/05/07/413378.htmlhttp://www.blogjava.net/rabbit/comments/413378.htmlhttp://www.blogjava.net/rabbit/archive/2014/05/07/413378.html#feedback0http://www.blogjava.net/rabbit/comments/commentrss/413378.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/413378.htmlhttp://www.php100.com/html/program/jquery/2013/0905/5970.html









jquery插件tipswindown 1.1

一个基于jquery的弹出层。支持拖拽,支持内容为文字,图片,url等!至于兼容性。在ie6下,弹出对像无法绝对固定。其他应该没啥大问题;

最新更新:(2010-08-12):修正ie6下不能遮住下拉菜单的bug,增加拖动时半透明效果。

应用演示

  1. 弹出文本信息提示:
    tipswindown("提示","text:提示信息内容","250","150","true","","true","msg")
  2. 弹出页面中的某个id的html:
    tipswindown("标题","id:testid","300","200","true","","true","id")
  3. 弹出图片:
    tipswindown("图片","img:图片路径","250","150","true","","true","img")
  4. get加载一个.html文件(也可以是.php/.asp?id=4之类的):
    tipswindown("标题","url:get?test.html","250","150","true","","true","text");
  5. 加载一个页面到框架显示:
    tipswindown("标题","iframe:http://www.nowamagic.net","900","580","true","","true","leotheme");
  6. 弹出一个不能拖动且没有遮罩背景的文本信息层:
    tipswindown("提示","text:提示信息内容","250","150","false","","false","msg")
  7. 弹出一个不能拖动,三秒钟自动关闭的层:
    tipswindown("提示","text:提示信息内容","250","150","false","3000","true","msg")

参数说明

顺序 参数 功能 备注
1 title 弹出层的标题 必填,纯文本
2 content 弹出层的内容 text 文本内容
id 页面里某id的子标签
img 图片
url get或post某一页面里的html,该页面要求只包含body的子标签
iframe 目标地址在框架显示
3 width 弹出层的宽 必填,比如“200”。(不需要带px)
4 height 弹出层的高 同 width
5 drag 是否可拖动 必填,可选参数(true,false)
6 time 自动消失时间 可不填,默认不自动关闭;参数可为空("")
7 showbg 是否显示遮罩层 可不填,默认不显示(此项如填了,它前面的time也必须要填)
8 cssname 弹出层附加样式名 可不填

像这种弹出透明背景层效果很常见了,除部分区域可以操作外其他区域不能操作,目前有提供插件,完全可以实现此种效果。

查看本页源代码可获取所有所需的代码。



rabbit 2014-05-07 22:23
]]>
批量插入(test)http://www.blogjava.net/rabbit/archive/2014/04/15/412487.htmlrabbitrabbittue, 15 apr 2014 13:38:00 gmthttp://www.blogjava.net/rabbit/archive/2014/04/15/412487.htmlhttp://www.blogjava.net/rabbit/comments/412487.htmlhttp://www.blogjava.net/rabbit/archive/2014/04/15/412487.html#feedback0http://www.blogjava.net/rabbit/comments/commentrss/412487.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/412487.html
  • <insert id="insertdata" parametertype="java.util.list" >  
  •         insert into emp(empno,ename,job,mgr,hiredate,sal,deptno) (  
  •         <foreach collection="list" item="item" index="index" separator="union all">  
  •             select  
  •                 #{item.empno,jdbctype=varchar},  
  •                 #{item.ename,jdbctype=varchar},  
  •                 #{item.job,jdbctype=varchar},  
  •                 #{item.mgr,jdbctype=numeric},  
  •                 #{item.mgr,jdbctype=numeric},  
  •                 to_date(#{item.hiredate,jdbctype=varchar},'yyyy-mm-dd')  
  •                   from dual  
  •         foreach>  
  •         )  
  • insert> 

    =====================================================================


    declare    
      type t_array is table of t_target%rowtype;    
      t_data t_array;    
      cursor c is    
        select null id, owner, object_name, null object_id, null xx, null yy    
        from dba_objects;    
    begin    
      open c;    
      loop    
        fetch c bulk collect    
        into t_data limit 100;    
        
        forall i in 1 .. t_data.count    
          insert into t_target values t_data (i);    
        exit when c%notfound;    
      end loop;    
      close c;    
      commit;    
    end; 



    <insert id="insertbyproc" statementtype="callable">         
    {call insertpro(#{name},#{age},#{sex},#{password},#{num})}

    insert>

    1 create definer = `root`@`localhost` procedure `newproc`(in `name_in` varchar(255),in `age_in` int,in `sex_in` varchar(255),in `password_in` varchar(255),in `num_in` int)  2 begin  3     set @a=0;  4 label:loop  5     set @a=@a1;  6     insert into person ( name, age, sex, password) values (name_in,age_in,sex_in,password_in);  7      if @a=num_in then  8             leave label;  9         end if; 10 end loop label; 11 end;



  • rabbit 2014-04-15 21:38
    ]]>
    oracle中hint深入理解http://www.blogjava.net/rabbit/archive/2013/11/08/406141.htmlrabbitrabbitfri, 08 nov 2013 06:44:00 gmthttp://www.blogjava.net/rabbit/archive/2013/11/08/406141.htmlhttp://www.blogjava.net/rabbit/comments/406141.htmlhttp://www.blogjava.net/rabbit/archive/2013/11/08/406141.html#feedback0http://www.blogjava.net/rabbit/comments/commentrss/406141.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/406141.htmlhint概述
    基于代价的优化器是很聪明的,在绝大多数情况下它会选择正确的优化器,减轻了dba的负担。但有时它也聪明反被聪明误,选择了很差的执行计划,使某个语句的执行变得奇慢无比。

    此时就需要dba进行人为的干预,告诉优化器使用我们指定的存取路径或连接类型生成执行计划,从而使语句高效的运行。例如,如果我们认为对于一个特定的语句,执行全表扫描要比执行索引扫描更有效,则我们就可以指示优化器使用全表扫描。在oracle 中,是通过为语句添加 hints(提示)来实现干预优化器优化的目的。
    不建议在代码中使用hint,在代码使用hint使得cbo无法根据实际的数据状态选择正确的执行计划。毕竟
    数据是不断变化的, 10g以后的cbo也越来越完善,大多数情况下我们该让oracle自行决定采用什么执行计划。

    oracle hints是一种机制,用来告诉优化器按照我们的告诉它的方式生成执行计划。我们可以用oracle hints来实现:
    1) 使用的优化器的类型
    2) 基于代价的优化器的优化目标,是all_rows还是first_rows。
    3) 表的访问路径,是全表扫描,还是索引扫描,还是直接利用rowid。
    4) 表之间的连接类型
    5) 表之间的连接顺序
    6) 语句的并行程度

    除了”rule”提示外,一旦使用的别的提示,语句就会自动的改为使用cbo优化器,此时如果你的数据字典中没有统计数据,就会使用缺省的统计数据。所以建议大家如果使用cbo或hints提示,则最好对表和索引进行定期的分析。

    如何使用hints:

    hints只应用在它们所在sql语句块(statement block,由select、update、delete关键字标识)上,对其它sql语句或语句的其它部分没有影响。如:对于使用union操作的2个sql语句,如果只在一个sql语句上有hints,则该hints不会影响另一个sql语句。

    我们可以使用注释(comment)来为一个语句添加hints,一个语句块只能有一个注释,而且注释只能放在select, update, or delete关键字的后面

    使用oracle hints的语法:

    {delete|insert|select|update} /* hint [text] [hint[text]]... */

    or

    {delete|insert|select|update} -- hint [text] [hint[text]]...

    注解:
    1) delete、insert、select和update是标识一个语句块开始的关键字,包含提示的注释只能出现在这些关键字的后面,否则提示无效。
    2) “ ”号表示该注释是一个hints,该加号必须立即跟在”/*”的后面,中间不能有空格。
    3) hint是下面介绍的具体提示之一,如果包含多个提示,则每个提示之间需要用一个或多个空格隔开。
    4) text 是其它说明hint的注释性文本

    5)使用表别名。如果在查询中指定了表别名,那么提示必须也使用表别名。例如:select /* index(e,dept_idx) */ * from emp e;
    6)不要在提示中使用模式名称:如果在提示中指定了模式的所有者,那么提示将被忽略。例如:
    select /* index(scott.emp,dept_idx) */ * from emp

    注意:如果你没有正确的指定hints,oracle将忽略该hints,并且不会给出任何错误。
    hint被忽略

    如果cbo认为使用hint会导致错误的结果时,hint将被忽略,详见下例
    sql> select /* index(t t_ind) */ count(*) from t;
    execution plan
    ----------------------------------------------------------
    plan hash value: 2966233522
    -------------------------------------------------------------------
    | id  | operation          | name | rows  | cost (%cpu)| time     |
    -------------------------------------------------------------------
    |   0 | select statement   |      |     1 |    57   (2)| 00:00:01 |
    |   1 |  sort aggregate    |      |     1 |            |          |
    |   2 |   table access full| t    | 50366 |    57   (2)| 00:00:01 |
    -------------------------------------------------------------------

    因为我们是对记录求总数,且我们并没有在建立索引时指定不能为空,索引如果cbo选择在索引上进行count时,但索引字段上的值为空时,结果将不准确,故cbo没有选择索引。
    sql>  select /* index(t t_ind) */ count(id) from t;
    execution plan
    ----------------------------------------------------------
    plan hash value: 646498162
    --------------------------------------------------------------------------
    | id  | operation        | name  | rows  | bytes | cost (%cpu)| time     |
    --------------------------------------------------------------------------
    |   0 | select statement |       |     1 |     5 |   285   (1)| 00:00:04 |
    |   1 |  sort aggregate  |       |     1 |     5 |            |          |
    |   2 |   index full scan| t_ind | 50366 |   245k|   285   (1)| 00:00:04 |
    --------------------------------------------------------------------------

    因为我们只对id进行count,这个动作相当于count索引上的所有id值,这个操作和对表上的id字段进行count是一样的(组函数会忽略null值)

    hint的具体用法

    和优化器相关的hint

    1、/* all_rows */
    表明对语句块选择基于开销的优化方法,并获得最佳吞吐量,使资源消耗最小化.
    select /* all _rows*/ emp_no,emp_nam,dat_in from bsempms where emp_no='scott';

    2、/* first_rows(n) */
    表明对语句块选择基于开销的优化方法,并获得最佳响应时间,使资源消耗最小化.
    select /* first_rows(20) */ emp_no,emp_nam,dat_in from bsempms where emp_no='scott';
    3、/* rule*/
    表明对语句块选择基于规则的优化方法.
    select /* rule */ emp_no,emp_nam,dat_in from bsempms where emp_no='scott';
    和访问路径相关的hint

    1、/* full(table)*/
    表明对表选择全局扫描的方法.
    select /* full(a)*/ emp_no,emp_nam from bsempms a where emp_no='scott';

    2、/* index(table index_name) */
    表明对表选择索引的扫描方法.
    select /* index(bsempms sex_index) */ * from bsempms where sex='m';
    5、/* index_asc(table index_name)*/
    表明对表选择索引升序的扫描方法.
    select /* index_asc(bsempms pk_bsempms) */ * from bsempms where dpt_no='scott';
    6、/* index_combine*/
    为指定表选择位图访问路经,如果index_combine中没有提供作为参数的索引,将选择出位图索引的布尔组合方式.
    select /* index_combine(bsempms sal_bmi hiredate_bmi) */  * from bsempms
    where sal<5000000 and hiredate

    7、/* index_join(table index_name1 index_name2) */
    当谓词中引用的列都有索引的时候,可以通过指定采用索引关联的方式,来访问数据
    select /* index_join(t t_ind t_bm) */ id from t where id=100 and object_name='employees'
    8、/* index_desc(table index_name)*/
    表明对表选择索引降序的扫描方法.

    select /* index_desc(bsempms pk_bsempms) */ * from bsempms where dpt_no='scott';
    9、/* index_ffs(table index_name) */
    对指定的表执行快速全索引扫描,而不是全表扫描的办法.
    select /* index_ffs(bsempms in_empnam)*/ * from bsempms where dpt_no='tec305';

    10、/* index_ss(t t_ind) */
    从9i开始,oracle引入了这种索引访问方式。当在一个联合索引中,某些谓词条件并不在联合索引的第一列时,可以通过index skip scan来访问索引获得数据。当联合索引第一列的唯一值个数很少时,使用这种方式比全表扫描效率高。

    sql> create table t as select 1 id,object_name from dba_objects;
    table created.
    sql> insert into t select 2,object_name from dba_objects;      
    50366 rows created.
    sql> insert into t select 3,object_name from dba_objects;      
    50366 rows created.

    sql> insert into t select 4,object_name from dba_objects;      
    50366 rows created.

    sql> commit;
    commit complete.
    sql> create index t_ind on t(id,object_name);
    index created.
    sql> exec dbms_stats.gather_table_stats('hr','t',cascade=>true);
    pl/sql procedure successfully completed.
    执行全表扫描
    sql> select /* full(t) */ * from t where object_name='employees';
    6 rows selected.
    execution plan
    ----------------------------------------------------------
    plan hash value: 1601196873
    --------------------------------------------------------------------------
    | id  | operation         | name | rows  | bytes | cost (%cpu)| time     |
    --------------------------------------------------------------------------
    |   0 | select statement  |      |     5 |   135 |   215   (3)| 00:00:03 |
    |*  1 |  table access full| t    |     5 |   135 |   215   (3)| 00:00:03 |
    --------------------------------------------------------------------------
    predicate information (identified by operation id):
    ---------------------------------------------------
       1 - filter("object_name"='employees')
    statistics
    ----------------------------------------------------------
              0  recursive calls
              0  db block gets
            942  consistent gets
              0  physical reads
              0  redo size
            538  bytes sent via sql*net to client
            385  bytes received via sql*net from client
              2  sql*net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              6  rows processed
    不采用hint
    sql>  select * from t where object_name='employees';
    6 rows selected.
    execution plan
    ----------------------------------------------------------
    plan hash value: 2869677071
    --------------------------------------------------------------------------
    | id  | operation        | name  | rows  | bytes | cost (%cpu)| time     |
    --------------------------------------------------------------------------
    |   0 | select statement |       |     5 |   135 |     5   (0)| 00:00:01 |
    |*  1 |  index skip scan | t_ind |     5 |   135 |     5   (0)| 00:00:01 |
    --------------------------------------------------------------------------
    predicate information (identified by operation id):
    ---------------------------------------------------
       1 - access("object_name"='employees')
           filter("object_name"='employees')
    statistics
    ----------------------------------------------------------
              1  recursive calls
              0  db block gets
             17  consistent gets
              1  physical reads
              0  redo size
            538  bytes sent via sql*net to client
            385  bytes received via sql*net from client
              2  sql*net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              6  rows processed

    当全表扫描扫描了942个块,联合索引只扫描了17个数据块。可以看到联合索引的第一个字段的值重复率很高时,即使谓词中没有联合索引的第一个字段,依然会使用index_ss方式,效率远远高于全表扫描效率。但当
    第一个字段的值重复率很低时,使用 index_ss的效率要低于 全表扫描,读者可以自行实验
    和表的关联相关的hint

    /* leading(table_1,table_2) */

    在多表关联查询中,指定哪个表作为驱动表,即告诉优化器首先要访问哪个表上的数据。
    select /* leading(t,t1) */ t.* from t,t1 where t.id=t1.id;

    /* order */

    让oracle根据from后面表的顺序来选择驱动表,oracle建议使用leading,他更为灵活
    select /* order */ t.* from t,t1 where t.id=t1.id;
    /* use_nl(table_1,table_2) */
    在多表关联查询中,指定使用nest loops方式进行多表关联。

    select /* use_nl(t,t1) */ t.* from t,t1 where t.id=t1.id;

    /* use_hash(table_1,table_2) */
    在多表关联查询中,指定使用hash join方式进行多表关联。

    select /* use_hash(t,t1) */ t.* from t,t1 where t.id=t1.id;

    在多表关联查询中,指定使用hash join方式进行多表关联,并指定表t为驱动表。

    select /* use_hash(t,t1) leading(t,t1) */ t.* from t,t1 where t.id=t1.id;

    /* use_merge(table_1,table_2) */
    在多表关联查询中,指定使用merge join方式进行多表关联。

    select /* use_merge(t,t1) */ t.* from t,t1 where t.id=t1.id;

    /* no_use_nl(table_1,table_2) */
    在多表关联查询中,指定不使用nest loops方式进行多表关联。

    select /* no_use_nl(t,t1) */ t.* from t,t1 where t.id=t1.id;

    /* no_use_hash(table_1,table_2) */
    在多表关联查询中,指定不使用hash join方式进行多表关联。

    select /* no_use_hash(t,t1) */ t.* from t,t1 where t.id=t1.id;

    /* no_use_merge(table_1,table_2) */
    在多表关联查询中,指定不使用merge join方式进行多表关联。

    select /* no_use_merge(t,t1) */ t.* from t,t1 where t.id=t1.id;

    其他常用的hint

    /* parallel(table_name n) */

    在sql中指定执行的并行度,这个值将会覆盖自身的并行度

    select /* parallel(t 4) */ count(*)  from t;

    /* no_parallel(table_name) */

    在sql中指定执行的不使用并行

    select /* no_parallel(t) */ count(*)  from t;

    /* append */以直接加载的方式将数据加载入库

    insert into t /* append */ select * from t;

    /* dynamic_sampling(table_name n) */

    设置sql执行时动态采用的级别,这个级别为0~10
    select /* dynamic_sampling(t 4) */ * from t where id > 1234

    /* cache(table_name) */
    进行全表扫描时将table置于lru列表的最活跃端,类似于table的cache属性

    select /* full(employees) cache(employees) */ last_name from employees
    附录hint表格

    hints for optimization approaches and goals

    all_rows the all_rows hint explicitly chooses the cost-based approach to optimize a statement block with a goal of best throughput (that is, minimum total resource consumption).
    first_rows the first_rows hint explicitly chooses the cost-based approach to optimize a statement block with a goal of best response time (minimum resource usage to return first row). in newer oracle version you should give a parameter with this hint: first_rows(n) means that the optimizer will determine an executionplan to give a fast response for returning the first n rows.
    choose the choose hint causes the optimizer to choose between the rule-based approach and the cost-based approach for a sql statement based on the presence of statistics for the tables accessed by the statement
    rule the rule hint explicitly chooses rule-based optimization for a statement block. this hint also causes the optimizer to ignore any other hints specified for the statement block. the rule hint does not work any more in oracle 10g.

    hints for access paths

    full the full hint explicitly chooses a full table scan for the specified table. the syntax of the full hint is full(table) where table specifies the alias of the table (or table name if alias does not exist) on which the full table scan is to be performed.
    rowid the rowid hint explicitly chooses a table scan by rowid for the specified table. the syntax of the rowid hint is rowid(table) where table specifies the name or alias of the table on which the table access by rowid is to be performed. (this hint depricated in oracle 10g)
    cluster the cluster hint explicitly chooses a cluster scan to access the specified table. the syntax of the cluster hint is cluster(table) where table specifies the name or alias of the table to be accessed by a cluster scan.
    hash the hash hint explicitly chooses a hash scan to access the specified table. the syntax of the hash hint is hash(table) where table specifies the name or alias of the table to be accessed by a hash scan.
    hash_aj the hash_aj hint transforms a not in subquery into a hash anti-join to access the specified table. the syntax of the hash_aj hint is hash_aj(table) where table specifies the name or alias of the table to be accessed.(depricated in oracle 10g)
    index the index hint explicitly chooses an index scan for the specified table. the syntax of the index hint is index(table index) where:table specifies the name or alias of the table associated with the index to be scanned and index specifies an index on which an index scan is to be performed. this hint may optionally specify one or more indexes:
    no_index the no_index hint explicitly disallows a set of indexes for the specified table. the syntax of the no_index hint is no_index(table index)
    index_asc the index_asc hint explicitly chooses an index scan for the specified table. if the statement uses an index range scan, oracle scans the index entries in ascending order of their indexed values.
    index_combine if no indexes are given as arguments for the index_combine hint, the optimizer will use on the table whatever boolean combination of bitmap indexes has the best cost estimate. if certain indexes are given as arguments, the optimizer will try to use some boolean combination of those particular bitmap indexes. the syntax of index_combine is index_combine(table index).
    index_join explicitly instructs the optimizer to use an index join as an access path. for the hint to have a positive effect, a sufficiently small number of indexes must exist that contain all the columns required to resolve the query.
    index_desc the index_desc hint explicitly chooses an index scan for the specified table. if the statement uses an index range scan, oracle scans the index entries in descending order of their indexed values.
    index_ffs this hint causes a fast full index scan to be performed rather than a full table.
    no_index_ffs do not use fast full index scan (from oracle 10g)
    index_ss exclude range scan from query plan (from oracle 10g)
    index_ss_asc exclude range scan from query plan (from oracle 10g)
    index_ss_desc exclude range scan from query plan (from oracle 10g)
    no_index_ss the no_index_ss hint causes the optimizer to exclude a skip scan of the specified indexes on the specified table. (from oracle 10g)

    hints for query transformations

    no_query_transformation prevents the optimizer performing query transformations. (from oracle 10g)
    use_concat the use_concat hint forces combined or conditions in the where clause of a query to be transformed into a compound query using the union all set operator. normally, this transformation occurs only if the cost of the query using the concatenations is cheaper than the cost without them.
    no_expand the no_expand hint prevents the optimizer from considering or-expansion for queries having or conditions or in-lists in the where clause. usually, the optimizer considers using or expansion and uses this method if it decides that the cost is lower than not using it.
    rewrite the rewrite hint forces the optimizer to rewrite a query in terms of materialized views, when possible, without cost consideration. use the rewrite hint with or without a view list. if you use rewrite with a view list and the list contains an eligible materialized view, then oracle uses that view regardless of its cost.
    norewrite / no_rewrite in oracle 10g renamed to no_rewrite. the norewrite/no_rewrite hint disables query rewrite for the query block, overriding the setting of the parameter query_rewrite_enabled.
    merge the merge hint lets you merge views in a query.
    no_merge the no_merge hint causes oracle not to merge mergeable views. this hint is most often used to reduce the number of possible permutations for a query and make optimization faster.
    fact the fact hint indicated that the table should be considered as a fact table. this is used in the context of the star transformation.
    no_fact the no_fact hint is used in the context of the star transformation to indicate to the transformation that the hinted table should not be considered as a fact table.
    star_transformation the star_transformation hint makes the optimizer use the best plan in which the transformation has been used. without the hint, the optimizer could make a query optimization decision to use the best plan generated without the transformation, instead of the best plan for the transformed query.
    no_star_transformation do not use star transformation (from oracle 10g)
    unnest the unnest hint specifies subquery unnesting.
    no_unnest use of the no_unnest hint turns off unnesting for specific subquery blocks.

    hints for join orders

    leading give this hint to indicate the leading table in a join. this will indicate only 1 table. if you want to specify the whole order of tables, you can use the ordered hint. syntax: leading(table)
    ordered the ordered hint causes oracle to join tables in the order in which they appear in the from clause. if you omit the ordered hint from a sql statement performing a join , the optimizer chooses the order in which to join the tables. you may want to use the ordered hint to specify a join order if you know something about the number of rows selected from each table that the optimizer does not. such information would allow you to choose an inner and outer table better than the optimizer could.

    hints for join operations

    use_nl the use_nl hint causes oracle to join each specified table to another row source with a nested loops join using the specified table as the inner table. the syntax of the use_nl hint is use_nl(table table) where table is the name or alias of a table to be used as the inner table of a nested loops join.
    no_use_nl do not use nested loop (from oracle 10g)
    use_nl_with_index specifies a nested loops join. (from oracle 10g)
    use_merge the use_merge hint causes oracle to join each specified table with another row source with a sort-merge join. the syntax of the use_merge hint is use_merge(table table) where table is a table to be joined to the row source resulting from joining the previous tables in the join order using a sort-merge join.
    no_use_merge do not use merge (from oracle 10g)
    use_hash the use_hash hint causes oracle to join each specified table with another row source with a hash join. the syntax of the use_hash hint is use_hash(table table) where table is a table to be joined to the row source resulting from joining the previous tables in the join order using a hash join.
    no_use_hash do not use hash (from oracle 10g)
    hints for parallel execution
    parallel the parallel hint allows you to specify the desired number of concurrent query servers that can be used for the query. the syntax is parallel(table number number). the parallel hint must use the table alias if an alias is specified in the query. the parallel hint can then take two values separated by commas after the table name. the first value specifies the degree of parallelism for the given table, the second value specifies how the table is to be split among the instances of a parallel server. specifying default or no value signifies the query coordinator should examine the settings of the initialization parameters (described in a later section) to determine the default degree of parallelism.
    noparallel / no_parallel the noparallel hint allows you to disable parallel scanning of a table, even if the table was created with a parallel clause. in oracle 10g this hint was renamed to no_parallel.
    pq_distribute the pq_distribute hint improves the performance of parallel join operations. do this by specifying how rows of joined tables should be distributed among producer and consumer query servers. using this hint overrides decisions the optimizer would normally make.
    no_parallel_index the no_parallel_index hint overrides a parallel attribute setting on an index to avoid a parallel index scan operation.
    additional hints
    append when the append hint is used with the insert statement, data is appended to the table. existing free space in the block is not used. if a table or an index is specified with nologging, this hint applied with an insert statement produces a direct path insert which reduces generation of redo.
    noappend overrides the append mode.
    cache the cache hint specifies that the blocks retrieved for the table in the hint are placed at the most recently used end of the lru list in the buffer cache when a full table scan is performed. this option is useful for small lookup tables. in the following example, the cache hint overrides the table default caching specification.
    nocache the nocache hint specifies that the blocks retrieved for this table are placed at the least recently used end of the lru list in the buffer cache when a full table scan is performed. this is the normal behavior of blocks in the buffer cache.
    push_pred the push_pred hint forces pushing of a join predicate into the view.
    no_push_pred the no_push_pred hint prevents pushing of a join predicate into the view.
    push_subq the push_subq hint causes nonmerged subqueries to be evaluated at the earliest possible place in the execution plan.
    no_push_subq the no_push_subq hint causes non-merged subqueries to be evaluated as the last step in the execution plan.
    qb_name specifies a name for a query block. (from oracle 10g)
    cursor_sharing_exact oracle can replace literals in sql statements with bind variables, if it is safe to do so. this is controlled with the cursor_sharing startup parameter. the cursor_sharing_exact hint causes this behavior to be switched off. in other words, oracle executes the sql statement without any attempt to replace literals by bind variables.
    driving_site the driving_site hint forces query execution to be done for the table at a different site than that selected by oracle
    dynamic_sampling the dynamic_sampling hint lets you control dynamic sampling to improve server performance by determining more accurate predicate selectivity and statistics for tables and indexes. you can set the value of dynamic_sampling to a value from 0 to 10. the higher the level, the more effort the compiler puts into dynamic sampling and the more broadly it is applied. sampling defaults to cursor level unless you specify a table.
    spread_min_analysis this hint omits some of the compile time optimizations of the rules, mainly detailed dependency graph analysis, on spreadsheets. some optimizations such as creating filters to selectively populate spreadsheet access structures and limited rule pruning are still used. (from oracle 10g)

    hints with unknown status

    merge_aj the merge_aj hint transforms a not in subquery into a merge anti-join to access the specified table. the syntax of the merge_aj hint is merge_aj(table) where table specifies the name or alias of the table to be accessed.(depricated in oracle 10g)
    and_equal the and_equal hint explicitly chooses an execution plan that uses an access path that merges the scans on several single-column indexes. the syntax of the and_equal hint is and_equal(table index index) where table specifies the name or alias of the table associated with the indexes to be merged. and index specifies an index on which an index scan is to be performed. you must specify at least two indexes. you cannot specify more than five. (depricated in oracle 10g)
    star the star hint forces the large table to be joined last using a nested loops join on the index. the optimizer will consider different permutations of the small tables. (depricated in oracle 10g)
    bitmap usage: bitmap(table_name index_name) uses a bitmap index to access the table. (depricated ?)
    hash_sj
    use a hash anti-join to evaluate a not in sub-query. use this hint in the sub-query, not in the main query. use this when your high volume not in sub-query is using a filter or nested loops join. try merge_aj if hash_aj refuses to work.(depricated in oracle 10g)
    nl_sj use a nested loop in a sub-query. (depricated in oracle 10g)
    nl_aj use an anti-join in a sub-query. (depricated in oracle 10g)
    ordered_predicates (depricated in oracle 10g)
    expand_gset_to_union (depricated in oracle 10g)


    参考至:《让oracle跑得更快》谭怀远著



    rabbit 2013-11-08 14:44
    ]]>
    oracle table-lock的5种模式http://www.blogjava.net/rabbit/archive/2013/11/05/406007.htmlrabbitrabbittue, 05 nov 2013 06:31:00 gmthttp://www.blogjava.net/rabbit/archive/2013/11/05/406007.htmlhttp://www.blogjava.net/rabbit/comments/406007.htmlhttp://www.blogjava.net/rabbit/archive/2013/11/05/406007.html#feedback0http://www.blogjava.net/rabbit/comments/commentrss/406007.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/406007.htmloracle中的锁定可以分为几类:
    1、dml lock(data lock),
    2、ddl lock(dictionary lock)
    3、internal lock/latch。

    dml lock又可以分为row lock和table lock。row lock在select.. for update/insert/update/delete时隐式自动产生,而table lock除了隐式产生,也可以调用lock table in name来显示锁定。

    如果不希望别的session lock/insert/update/delete表中任意一行,只允许查询,可以用lock table table_name in exclusive mode。(x)这个锁定模式级别最高,并发度最小。

    如果允许别的session查询或用select for update锁定记录,不允许insert/update/delete,可以用
    lock table table_name in share row exclusive mode。(srx)

    如果允许别的session查询或select for update以及lock table table_name in share mode,只是不允许insert/update/delete,可以用
    lock table table_name in share mode。(share mode和share row exclusive mode的区别在于一个是非抢占式的而另一个是抢占式的。进入share row exclusive mode后其他session不能阻止你insert/update/delete,而进入share mode后其他session也同样可以进入share mode,进而阻止你对表的修改。(s)

    还有两种锁定模式,row share(rs)和row exclusive(rx)。他们允许的并发操作更多,一般直接用dml语句自动获得,而不用lock语句。
    详细参考concepts文档中的"type of locks":
    http://download-uk.oracle.com/docs/cd/b10501_01/server.920/a96524/c21cnsis.htm#2937 


    -------------------------------------
    怎么unlock table 解锁

    方法一、kill session:

    sql> select object_id,session_id from v$locked_object;  //注意session_id 就是上锁的 session标志
    sql> select username,sid,serial#  from v$session where sid=。。;      //这里的sid = session_id 
    sql> alter system kill session 'id,serial#';     //杀死该session

    方法二、rollback/commit 终止事务处理


     

    首先,应当考虑表空间和磁盘空间是否足够。我们知道索引也是一种数据,在建立索引的时候势必也会占用大量表空间。因此在对一张大表建立索引的时候首先应当考虑的是空间容量问题。
    其次,在对建立索引的时候要对表进行加锁,因此应当注意操作在业务空闲的时候进行
    性能调整方法:
    首先应考虑io, 物理上,应当尽量把索引与数据分散到不同的磁盘上。 逻辑上,数据表空间与索引表空间分开。这是在建索引时应当尊守的基本原则
    其次,在建立索引的时候要对表进行全表的扫描工作,因此,应当考虑调大初始化参数db_file_multiblock_read_count的值。一般设置为16或更大
    再 次,建立索引除了要进行全表扫描外同时还要对数据进行大量的排序操作,因此,应当调整排序区的大小。在9i之前, 可以在session级别上加大sort_area_size 的大小, 比如设置为100m或者更大。9i 以后, 如果初始化参数workarea_size_policy的值为true, 则排序区从pga_aggregate_target里自动分配获得




    rabbit 2013-11-05 14:31
    ]]>
    使用 eclemma 进行覆盖测试http://www.blogjava.net/rabbit/archive/2013/11/01/405872.htmlrabbitrabbitfri, 01 nov 2013 01:43:00 gmthttp://www.blogjava.net/rabbit/archive/2013/11/01/405872.htmlhttp://www.blogjava.net/rabbit/comments/405872.htmlhttp://www.blogjava.net/rabbit/archive/2013/11/01/405872.html#feedback0http://www.blogjava.net/rabbit/comments/commentrss/405872.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/405872.html覆盖测试是衡量测试质量的一个重要指标。在对一个软件产品进行了单元测试、组装测试、集成测试以及接受测试等繁多的测试之后,我们能不能就此对软件的质量产生一定的信心呢?这就需要我们对测试的质量进行考察。如果测试仅覆盖了代码的一小部分,那么不管我们写了多少测试用例,我们也不能相信软件质量是有保证的。相反,如果测试覆盖到了软件的绝大部分代码,我们就能对软件的质量有一个合理的信心。本文将介绍一个优秀的开源软件测试工具 eclemma,它能够对由 java 语言编写的程序进行覆盖测试,从而对程序运行的结果生成详尽的覆盖测试报告。

    介绍

    现在 it 开发人员比以往任何时候都更加关注测试的重要性,没有经过良好测试的代码更容易出问题。在极限编程中,测试驱动开发已经被证明是一种有效提高软件质量的方法。在测试驱动的开发方式中,软件工程师在编写功能代码之前首先编写测试代码,这样能从最开始保证程序代码的正确性,并且能够在程序的每次演进时进行自动的回归测试。测试对于软件产品的成败起着至关重要的作用,在极限编程领域,甚至有人提议任何未经测试的代码都应该自动从发布的产品中删除。作者并不确信这个观点是正确的,但是测试本身的质量确实是一个需要高度关注的问题。测试的覆盖率是测试质量的一个重要指标,我们需要工具来帮助我们进行对软件测试覆盖的考察。

    eclemma 就是这样一个能帮助开发人员考察测试覆盖率的优秀的 eclipse 开源插件。eclemma 在覆盖测试领域是如此的优秀,以致于它在过去不久的 2006 年成为了 eclipse community awards winners 决赛选手。虽然最后 eclipse checkstyle plugin 取得了 best open source eclipse-based developer tool 的称号,但我们也可以由此看到 eclemma 对开发人员的帮助是巨大的(eclipse community award 的具体信息可以参阅 )。

    提到 eclemma 首先就要说到著名的 java 覆盖测试工具 emma。emma 是一个在 sourceforge 上进行的开源项目(参阅 )。从某种程度上说,eclemma 可以看作是 emma 的一个图形界面。在本文的中,可以看到专门讲述使用 emma 的技术文章。

    emma 的作者开发 emma 之初,程序员已经有了各种各样优秀的开源 java 开发工具。举例来说,我们有优秀的集成开发环境 eclipse,有开源的 jdk,有单元测试工具 junit,有 ant 这样的项目管理工具,我们还可以用 cvs 或 subversion 来进行源代码版本的维护。当时看来,也许唯一缺少的就是一个开源的覆盖测试工具了。emma 就是为了填补这项空白而生的。现在的情况已经和 emma 诞生的时候不一样的。时至今日,我们已经有了不少的覆盖测试工具。例如 coverlipse 是一个基于 eclipse 的覆盖测试插件。其他还有 cobertura,quilt 和 jcoverage 等。但是 emma 具有一些非常优秀的特性使得它更适合被广泛的使用。和 coverlipse 等工具比起来,emma 是开源的,同时它对应用程序执行速度的影响非常小。

    eclemma 的出现弥补了 emma 用户一个大的遗憾 ---- 缺乏图形界面以及对集成开发环境的支持。将 eclipse 和 emma 这两个在各自领域最为优秀的工具结合起来,这就是 eclemma 为我们提供的。接下来,我们就要在后续章节中和读者朋友一起看看 eclemma 为开发人员提供了什么。


    安装 eclemma 插件

    安装 eclemma 插件的过程和大部分 eclipse 插件相同,我们既可以通过 eclipse 标准的 update 机制来远程安装 eclemma 插件(),也可以从站点(参阅 )下载 zip 文件并解压到 eclipse 所在的目录中。

    图 1 添加 eclemma 更新站点

    不管采用何种方式来安装 eclemma,安装完成并重新启动 eclipse 之后,工具栏上应该出现一个新的按钮:

    图 2 新增的覆盖测试按钮

    使用 eclemma 测试 java 程序

    为了实验 eclemma 的特性,我们首先在 eclipse 的 workspace 中建立一个名称为 test.emma 的新 java 项目。接下来,我们在其中建立一个 helloworld 类,其代码如下所示:

    清单 1 用于测试 eclemma 的代码
    package test.emma;
    public class helloworld {
    	/**
    	 * @param args
    	 */
    	public static void main(string[] args) {
    		int rand = (int) (math.random()*100);
    		if(rand%2==0){
    			system.out.println( "hello, world! 0");
    		}
    		else
    			system.out.println("hello, world! 1");
    		
    		int result = rand%2==0? rand rand:rand*rand; 
    		system.out.println(result);
    	}
    }

    接下来,我们通过 eclemma 运行 helloworld.main() 函数。

    图 3 对 java 应用程序进行覆盖测试

    执行完毕之后,我们正在编辑 helloworld.java 的窗口将会变成如下所示:

    图 4 进行覆盖测试的结果

    在 java 编辑器中,eclemma 用不同的色彩标示了源代码的测试情况。其中,绿色的行表示该行代码被完整的执行,红色部分表示该行代码根本没有被执行,而黄色的行表明该行代码部分被执行。黄色的行通常出现在单行代码包含分支的情况,例如 中的 16 行就显示为黄色。由于程序中有一个随机确定的分支,因此读者的窗口可能与这里稍有不同(11 行或者 14 行中有且只有一个红色的行)。

    除了在源代码编辑窗口直接进行着色之外,eclemma 还提供了一个单独的视图来统计程序的覆盖测试率。

    图 5 察看程序的覆盖测试率

    eclemma 提供的 coverage 视图能够分层的显示代码的覆盖测试率, 中的信息表明我们对 helloworld 的一次运行覆盖了大约 68.6% 的代码。

    想在一次运行中覆盖所有的代码通常比较困难,如果能把多次测试的覆盖数据综合起来进行察看,那么我们就能更方便的掌握多次测试的测试效果。eclemma 提供了这样的功能。现在,让我们重复数次对 helloworld 的覆盖测试。我们注意到 coverage 视图总是显示最新完成的一次覆盖测试。事实上,eclemma 为我们保存了所有的测试结果。接下来,我们将通过 coverage 视图的工具按钮来结合多次覆盖测试的结果。

    图 6 用于结合多次覆盖测试结果的工具栏按钮

    当我们多次运行 coverage 之后,我们可以单击 所示工具栏按钮。之后,一个对话框将被弹出以供用户选择需要合并的覆盖测试。

    图 7 选择需要合并的覆盖测试结果

    在合并完成之后,我们可以观察到 java 编辑器和 coverage 视图中都显示了合并之后的结果:

    图 8 察看合并后的覆盖测试结果

    中,我们可以看到,通过多次运行覆盖测试,最终我们的代码达到了 91.4% 的测试覆盖率。有趣的是,图中第三行代码被标记为红色,而此行代码实际上是不可执行的。奥妙在于,我们没有生成任何 helloworld 类的实例,因此缺省构造函数没有被调用,而 eclemma 将这个特殊代码的覆盖状态标记在类声明的第一行。


    eclemma 的高级特性

    如果 eclemma 只能测试 java application 的测试覆盖率,那么它相对命令行版本的 emma 来说,提供的增强就不多了。相反,eclemma 提供了很多与 eclipse 紧密结合的功能。它不仅能测试 java application,还能计算 junit 单元测试,对 eclipse 插件测试的覆盖率。从 中我们可以看到 eclemma 目前支持四种类型的程序。

    图 9 eclemma 的配置页面

    为了了解 eclemma 是如何获得覆盖测试数据的,我们需要先对 emma 有初步的了解。通常代码覆盖测试工具都需要对被执行的代码进行修改。而 emma 提供了两种方式来完成这件事。

    1. 预插入模式:对程序进行测量之前,需要采用 emma 提供的工具对 class 文件或者 jar 文件进行修改。修改完成之后的代码可以立刻被执行。覆盖测试的结果将会被存放到指定的文件中。
    2. 即时插入模式:即时插入模式不需要事先对代码进行修改。相反,对代码的修改是通过一个 emma 定制的 class loader(类载入器)进行的。这种方式的优点很明显,我们不需要对 class 或者 jar 文件进行任何修改。缺点是我们为了获得测试的结果,需要用 emma 提供的命令 emmarun 来执行 java 应用程序。

    使用即时插入模式的优点很明显:class 文件和 jar 文件不会被修改。而预插入模式的应用范围更为广泛,对于某些需要嵌入到框架中运行的代码来说(例如 ejb),我们只能使用预插入模式。eclemma 仅仅使用了 emma 的预插入模式来工作,不过 eclemma 缺省会在临时目录中创建 class 文件和 jar 文件的副本来进行修改,因此在 workspace 中 class 和 jar 文件仍然保持原样。虽然听上去很好,但是由于需要修改 classpath 来使用修改过的 class 和 jar 文件,对于不能修改 classpath 的应用(例如 eclipse rcp 和 junit plugin test)来说,我们还是只能选择修改 workspace 中的 class 文件和 jar 文件。对于 java application 和 junit 类型的覆盖测试,我们可以在配置对话框中选中“in-place instrumentation”项来指定直接修改 workspace 中的 .class 文件和 .jar 文件。



    rabbit 2013-11-01 09:43
    ]]>
    基于xfire soap header的webservice安全验证教程 .http://www.blogjava.net/rabbit/archive/2013/10/24/405610.htmlrabbitrabbitthu, 24 oct 2013 08:28:00 gmthttp://www.blogjava.net/rabbit/archive/2013/10/24/405610.htmlhttp://www.blogjava.net/rabbit/comments/405610.htmlhttp://www.blogjava.net/rabbit/archive/2013/10/24/405610.html#feedback1http://www.blogjava.net/rabbit/comments/commentrss/405610.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/405610.htmlwebserice是一种开放的web服务,任何人都可以访问,但我们有时候需要考虑只有付费用户才能使用ws,所以,我们就需要对ws加入安全验证机制,当然,可以利用防火墙的ip过滤,web应用的配置从最外层去隔离非法用户,但在内层,我们也可以使用soap header的方式,由客户端发送验证数据,服务端验通过后基ws访问权限

    首先根据我的这篇blog

    配置ws server和ws client,其中client端的测试代码类名由client改为clienttest,因为我们要用到xfire的一个名为client的类 

     

    首先我们编写服务端验证类继承abstracthandler

     

    package test;

    import org.codehaus.xfire.messagecontext;
    import org.codehaus.xfire.handler.abstracthandler;
    import org.jdom.element;

    public class authenticationhandler extends abstracthandler {

        
    public void invoke(messagecontext cfx) throws exception {
               
    if(cfx.getinmessage().getheader() == null)
               
    {
                   
    throw new org.codehaus.xfire.fault.xfirefault("请求必须包含验证信息",org.codehaus.xfire.fault.xfirefault.sender);
               }

               element token
    =cfx.getinmessage().getheader().getchild("authenticationtoken");
               
    if (token == null
               

                
    throw new org.codehaus.xfire.fault.xfirefault("请求必须包含身份验证信息", org.codehaus.xfire.fault.xfirefault.sender); 
               }
     

                  string username 
    = token.getchild("username").getvalue(); 
                  string password 
    = token.getchild("password").getvalue(); 
                  
    try 
                  

                      
    //进行身份验证 ,只有abcd@1234的用户为授权用户
                     if(username.equals("abcd"&& password.equals("1234"))
                      
    //这语句不显示
                      system.out.println("身份验证通过");
                     
    else throw new exception();
                  }
     
                  
    catch (exception e) 
                  

                      
    throw new   org.codehaus.xfire.fault.xfirefault("非法的用户名和密码",   org.codehaus.xfire.fault.xfirefault.sender); 
                  }
     

              }
     



    }

     

    下面是client发送授权信息

     

    package test;

    import org.codehaus.xfire.messagecontext;
    import org.codehaus.xfire.handler.abstracthandler;
    import org.jdom.element;

    public class clientauthenticationhandler extends abstracthandler {

         
    private string username = null

         
    private string password = null

         
    public clientauthenticationhandler() 

         }
     

         
    public clientauthenticationhandler(string username,string password) 

             
    this.username = username; 

             
    this.password = password; 
         }
     

         
    public void setusername(string username) 

             
    this.username = username; 

         }
     

         
    public void setpassword(string password) 

             
    this.password = password; 

         }
     

         
    public void invoke(messagecontext context) throws exception 

             
    //为soap header构造验证信息
             element el = new element("header"); 
             context.getoutmessage().setheader(el); 
             element auth 
    = new element("authenticationtoken"); 
             element username_el 
    = new element("username"); 
             username_el.addcontent(username); 
             element password_el 
    = new element("password"); 
             password_el.addcontent(password); 
             auth.addcontent(username_el); 
             auth.addcontent(password_el); 
             el.addcontent(auth); 
         }
     



    }

    为clienttest.java加入以下代码

     xfireproxy proxy = (xfireproxy)proxy.getinvocationhandler(service);
    client client = proxy.getclient();
    client.addouthandler(new clientauthenticationhandler("abcd1","1234"));

    等等,还没有完,修改services.xm为ws绑定handler

      

    xml version="1.0" encoding="utf-8"?>


    <beans>
    <service xmlns="http://xfire.codehaus.org/config/1.0">
    <name>helloservicename>
    <namespace>http://test/helloservicenamespace>
    <serviceclass>test.ihelloserviceserviceclass>
    <implementationclass>test.helloserviceimplimplementationclass>
     
    <inhandlers> 
     
    <handler  handlerclass ="test.authenticationhandler" >handler > 
     
    inhandlers>
    service>
    beans>


    这样我们就完成了编码,下面启动tomcat,运行客户端代码,本文为位授权用户,使用,可以正常访问ws,如果用错误帐号,则会有以下异常

     

    exception in thread "main" org.codehaus.xfire.xfireruntimeexception: could not invoke service.. nested exception is org.codehaus.xfire.fault.xfirefault: 非法的用户名和密码
    org.codehaus.xfire.fault.xfirefault: 非法的用户名和密码
        at org.codehaus.xfire.fault.soap11faultserializer.readmessage(soap11faultserializer.java:31)
        at org.codehaus.xfire.fault.soapfaultserializer.readmessage(soapfaultserializer.java:28)
        at org.codehaus.xfire.soap.handler.readheadershandler.checkforfault(readheadershandler.java:111)
        at org.codehaus.xfire.soap.handler.readheadershandler.invoke(readheadershandler.java:67)
        at org.codehaus.xfire.handler.handlerpipeline.invoke(handlerpipeline.java:131)
        at org.codehaus.xfire.client.client.onreceive(client.java:406)
        at org.codehaus.xfire.transport.http.httpchannel.sendviaclient(httpchannel.java:139)
        at org.codehaus.xfire.transport.http.httpchannel.send(httpchannel.java:48)
        at org.codehaus.xfire.handler.outmessagesender.invoke(outmessagesender.java:26)
        at org.codehaus.xfire.handler.handlerpipeline.invoke(handlerpipeline.java:131)
        at org.codehaus.xfire.client.invocation.invoke(invocation.java:79)
        at org.codehaus.xfire.client.invocation.invoke(invocation.java:114)
        at org.codehaus.xfire.client.client.invoke(client.java:336)
        at org.codehaus.xfire.client.xfireproxy.handlerequest(xfireproxy.java:77)
        at org.codehaus.xfire.client.xfireproxy.invoke(xfireproxy.java:57)
        at $proxy0.getuser(unknown source)
        at test.clienttest.main(clienttest.java:39)

     

    如果不在cienttest加以下增加heade则会有以下异常

     xfireproxy proxy = (xfireproxy)proxy.getinvocationhandler(service);
    client client = proxy.getclient();
     client.addouthandler(new clientauthenticationhandler("abcd1","1234"));

    exception in thread "main" org.codehaus.xfire.xfireruntimeexception: could not invoke service.. nested exception is org.codehaus.xfire.fault.xfirefault: 请求必须包含验证信息
    org.codehaus.xfire.fault.xfirefault: 请求必须包含验证信息
        at org.codehaus.xfire.fault.soap11faultserializer.readmessage(soap11faultserializer.java:31)
        at org.codehaus.xfire.fault.soapfaultserializer.readmessage(soapfaultserializer.java:28)
        at org.codehaus.xfire.soap.handler.readheadershandler.checkforfault(readheadershandler.java:111)
        at org.codehaus.xfire.soap.handler.readheadershandler.invoke(readheadershandler.java:67)
        at org.codehaus.xfire.handler.handlerpipeline.invoke(handlerpipeline.java:131)
        at org.codehaus.xfire.client.client.onreceive(client.java:406)
        at org.codehaus.xfire.transport.http.httpchannel.sendviaclient(httpchannel.java:139)
        at org.codehaus.xfire.transport.http.httpchannel.send(httpchannel.java:48)
        at org.codehaus.xfire.handler.outmessagesender.invoke(outmessagesender.java:26)
        at org.codehaus.xfire.handler.handlerpipeline.invoke(handlerpipeline.java:131)
        at org.codehaus.xfire.client.invocation.invoke(invocation.java:79)
        at org.codehaus.xfire.client.invocation.invoke(invocation.java:114)
        at org.codehaus.xfire.client.client.invoke(client.java:336)
        at org.codehaus.xfire.client.xfireproxy.handlerequest(xfireproxy.java:77)
        at org.codehaus.xfire.client.xfireproxy.invoke(xfireproxy.java:57)
        at $proxy0.getuser(unknown source)
        at test.clienttest.main(clienttest.java:35)


    rabbit 2013-10-24 16:28
    ]]>
    java实现简单的单点登录(转载)http://www.blogjava.net/rabbit/archive/2013/10/18/405392.htmlrabbitrabbitfri, 18 oct 2013 01:44:00 gmthttp://www.blogjava.net/rabbit/archive/2013/10/18/405392.htmlhttp://www.blogjava.net/rabbit/comments/405392.htmlhttp://www.blogjava.net/rabbit/archive/2013/10/18/405392.html#feedback0http://www.blogjava.net/rabbit/comments/commentrss/405392.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/405392.html阅读全文

    rabbit 2013-10-18 09:44
    ]]>
    解决ie下iframe的session丢失http://www.blogjava.net/rabbit/archive/2013/06/09/400441.htmlrabbitrabbitsun, 09 jun 2013 07:57:00 gmthttp://www.blogjava.net/rabbit/archive/2013/06/09/400441.htmlhttp://www.blogjava.net/rabbit/comments/400441.htmlhttp://www.blogjava.net/rabbit/archive/2013/06/09/400441.html#feedback1http://www.blogjava.net/rabbit/comments/commentrss/400441.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/400441.html主界面使用的是iframe做的 动态内容嵌套 需要登录 但是每次刷新 session 都失效....

    整个应用在ff下是正常的,但是在ie下每次点击下一页的时候都要重新登录。经过调试发现刷新后请求采用了新的 sessionid,于是怀疑到了是iframe的问题。在网上搜了一下,果真是ie的iframe问题。ie6/ie7支持的p3p(platform for privacy preferences project (p3p) specification)协议默认阻止第三方无隐私安全声明的cookie,firefox目前还不支持p3p安全特 性,firefox中不存在此问题。
    具体的解决方式是在登录的action处理方法中加上 
    response.setheader("p3p","cp=cao psa our idc dsp cor adm devi taii psd ivai ivdi coni his ind cnt"); 
    问题搞定!



    rabbit 2013-06-09 15:57
    ]]>
    struts 2标签 <s:textfield> 样式问题http://www.blogjava.net/rabbit/archive/2013/06/05/400213.htmlrabbitrabbitwed, 05 jun 2013 02:29:00 gmthttp://www.blogjava.net/rabbit/archive/2013/06/05/400213.htmlhttp://www.blogjava.net/rabbit/comments/400213.htmlhttp://www.blogjava.net/rabbit/archive/2013/06/05/400213.html#feedback0http://www.blogjava.net/rabbit/comments/commentrss/400213.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/400213.html初学struts2,在头脑中一直在想一个问题,就是对于struts2 ,当应用其自身的标签时,例如:

      

    当查看源代码时为:

       

    自动添加的table tr td 标签,但如果想 一行显示多列怎么办?

    网上查了查,有好多奇怪的解决办法,比如说通过在页面上判断,看什么时候输入 标签,但我认为,struts2这样做,那也太不人道了,后终于查到原因,现总结如下:

    原理:在struts2中加入了theme(主题)的概念,通过设置不同的主题,可以让struts的代码输出不同的html代码,你也就相应得到不同的布局效果。

    问题一:struts2有哪些主题?

    struts2提供了三种主题,ajax, simple, xhtml,它默认的是xhtml主题,当然你可以写任意个你自己的主题,我们称之为自定义主题

    问题二:struts2怎么改?

    有两种方法可以解决.

    1.简单的方法(也很实用)

    在struts.xml中,加上下一行代码就可以了

    代表所有的页面采用的都是 simple主题了,这时它输出的页面,不回添加任何多余的代码,比如 table tr td 等,我们就可以像其他编辑页面的方式编辑页面的风格。

    或者 在

    struts2每个标签都有theme属性

    2.在struts.properties里改:

    #设置主题
    struts.ui.theme=simple

    可见另一篇:struts.properties



    rabbit 2013-06-05 10:29
    ]]>
    oracle中like与instr模糊查询性能大比拼http://www.blogjava.net/rabbit/archive/2013/01/21/394510.htmlrabbitrabbitmon, 21 jan 2013 07:51:00 gmthttp://www.blogjava.net/rabbit/archive/2013/01/21/394510.htmlhttp://www.blogjava.net/rabbit/comments/394510.htmlhttp://www.blogjava.net/rabbit/archive/2013/01/21/394510.html#feedback3http://www.blogjava.net/rabbit/comments/commentrss/394510.htmlhttp://www.blogjava.net/rabbit/services/trackbacks/394510.htmloraclelikeinstr模糊查询性能大比拼

     

     

    instr(title,'手册')>0  相当于  title like '%手册%'

     

    instr(title,'手册')=1  相当于  title like '手册%'

     

    instr(title,'手册')=0  相当于  title not like '%手册%'

     

    t表中将近有1100万数据,很多时候,我们要进行字符串匹配,在sql语句中,我们通常使用like来达到我们搜索的目标。但经过实际测试发现,like的效率与instr函数差别相当大。下面是一些测试结果:

    sql> set timing on
    sql> select count(*) from t where instr(title,'
    手册')>0;

      count(*)
    ----------
         65881

    elapsed: 00:00:11.04
    sql> select count(*) from t where title like '%
    手册%';

      count(*)
    ----------
         65881

    elapsed: 00:00:31.47
    sql> select count(*) from t where instr(title,'
    手册')=0;

      count(*)
    ----------
      11554580

    elapsed: 00:00:11.31
    sql> select count(*) from t where title not like '%
    手册%';

      count(*)
    ----------
      11554580

    另外,我在结另外一个2亿多的表,使用8个并行,使用like查询很久都不出来结果,但使用instr,4分钟即完成查找,性能是相当的好。这些小技巧用好,工作效率提高不少。通过上面的测试说明,oracle内建的一些函数,是经过相当程度的优化的。

     

    instr(title,’aaa’)>0 相当于like

    instr(title,’aaa’)=0 相当于not like

     

    特殊用法:

     

    select   id, name from users where instr('101914, 104703', id) > 0; 
      
    它等价于 
    select   id, name from users where id = 101914 or id = 104703;

     

     

     

    一般来说,在oracle数据库中,我们对tb表的name字段进行模糊查询会采用下面两种方式:
    1.select * from tb where name like '%xx%';
    2.select * from tb where instr(name,'xx')>0;

    若是在name字段上没有加索引,两者效率差不多,基本没有区别。

    为提高效率,我们在name字段上可以加上非唯一性索引:
    create index idx_tb_name on tb(name);

    这样,再使用

    select * from tb where instr(name,'xx')>0;

    这样的语句查询,效率可以提高不少,表数据量越大时两者差别越大。但也要顾及到name字段加上索引后dml语句会使索引数据重新排序的影响。



    rabbit 2013-01-21 15:51
    ]]>
    网站地图