Acegi
JSF and Acegi
Another Faces in your Face: Acegi/JSF solution addendum
ACEGI JSF Components hit the stores
Apache MyFaces 论坛
JavaServer Faces 1.2 入门
Acegi Security System for Spring Framework, Part 1
Acegi Security System for Spring Framework, Part 2
JavaServer Faces Technology
Acegi S ...
/*
* Copyright (C) 2008 ELICE.X
*
* WebSite/blog: http://elice.cn
* QQ/MSN/GTalk: elicex@gmail.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* ...
/*这是在ORACLE数据库中删除重复记录的方法*/
delete emp e1
where e1.empno <> (select max(empno) from emp e2
where e1.deptno=e2.deptno
and e1.job=e2.job);
/*删除数据库中的重复记录(不是全部删除)
原理是删除重复记录中不是最大值的记录,
这要求此字段必需是数字型*/
<!--文件url.html -->
<html><head><title>测试</title></head>
<script src="url.js"></script>
<body>
<form id="loginform" action="" method="GET">
<a href="http://eli.blogjava.net/" id="lnk">屹砾博客</a><br>
姓名:< ...
以前面试的时候有人笔试的时候,考这个问题,觉得比较XX,写程序应该是在计算机上面,而不是在笔头上。PHP程序文件sort_bubble_up.php
<html>
<head><title>冒泡排序法演示</title><head>
<link rel="stylesheet" href="sort.css">
<body>
<h1>冒泡排序法演示</h1>
<table cellpadding="5" cellspacing="1" border="0" al ...
以前面试的时候有人笔试的时候,考这个问题,觉得比较XX,写程序应该是在计算机上面,而不是在笔头上。PHP程序 文件sort_order.php
<html>
<head><title>顺序排序法演示</title><head>
<link rel="stylesheet" href="sort.css">
<body>
<h1>顺序排序法演示</h1>
<table cellpadding="5" cellspacing="1" border="0" ...
/* ORACLE DBMS_JOB.SUBMIT的使用 */
/* elicex@gmail.com 2007/2008 */
/*编写ORACLE作业*/
VARIABLE JOB NUMBER;
BEGIN
DBMS_JOB.SUBMIT(
JOB => :JOB, /*自动生成JOB_ID*/
WHAT => 'CREATE_TASK_BY_PLAN;', /*需要执行的过程或SQL语句*/
NEXT_DATE => TRUNC(SYSDATE+1)+6/24, /*初次执行时间*/
INTERVAL = ...







评论排行榜