- 浏览: 466771 次
- 性别:
- 来自: 北京
最新评论
-
yuan_bin1990:
您好,请问下demo如何运行啊,准备研究研究,但不知道入口啊。 ...
ssh2(struts2+spring2.5+hibernate3.3)自动生成代码程序 -
luyulong:
[b][/b][i][/i][ ...
jQuery进度条插件 jQuery progressBar -
txin0814:
mark..
读取文件目录 -
vurses:
[align=center][color=red][size= ...
include 与 jsp:include区别 -
Roshan2:
http://lijiejava.iteye.com/blog ...
Spring AOP 入门实例
文章列表
1。无对话框关闭窗口
Js代码
window.opener=null
window.open("","_self")
window.close();
window.opener=null
window.open("","_self")
window.close();
2。每次都刷新页面,防止showModalDialog只取缓存数据,
Js代码
//网页不保存在缓存中,每次访问都刷新页面。 ...
1.基本概念的理解 绝对路径:绝对路径就是你的主页上的文件或目录在硬盘上真正的路径,(URL和物理路径)例如: C:\xyz\test.txt 代表了test.txt文件的绝对路径。http://www.sun.com/index.htm也代表了一个 URL绝对路径。 相对路径: ...
"^\d+$" //非负整数(正整数 + 0)"^[0-9]*[1-9][0-9]*$" //正整数"^((-\d+)|(0+))$" //非正整数(负整数 + 0)"^-[0-9]*[1-9][0-9]*$" //负整数"^-?\d+$" //整数"^\d+(\.\d+)?$" //非负浮点数(正浮点数 + 0)"^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9 ...
<body>
<table><tr><td id="otd"><div></div><img/><img/><hr/><img/></td></tr></table>
<script language="JavaScript" type="text/javascript">
function set()
...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
设虚拟目录 "site",通过 http://localhost:8080/site 访问物理路径 D:\site 文件夹里面的内容。设置过程如下: 1.复制 Tomcat6.0\webapps\ROOT 目录下的 WEB-INF 文件夹到 D:\site 目录下。 2.打开 D:\site\WEB-INF 目录下的 web.xml 文件,在 </description> 之后加入: <!--JSPC servlet mappings start --> <!--JSPC servlet mappings end --> 3.打开 Tomc ...
如果你用myEclipse进行开发的话,运行时可能会出现以下的错误:Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/util/LineInputStream原因是jar包版本不统一,解决方法如下:删除Java EE 5 Libraries/javaee.jar/mail里的包有东西.具体方法如下:用rar打开X:/Program Files/MyEclipse 6.0/myeclipse/eclipse/plugins/com.genuitec.eclipse.j2eedt.cor ...
dao 方法:
Java代码
/**
* get appCodes by Pagination
*
* @param appCode
* @param pagination
*/
@SuppressWarnings("unchecked")
public Pagination getAppCodes(final AppCode appCode, final Pagination pagination) {
HibernateCallb ...
package org.lazyman.util
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.lang.math.RandomUtils;
/**
* @author yihuan
* @version RandomNumberUtil.java 2010-1-14 上午11:39:20
*/
public class RandomNumberUtil {
private static final int[ ...
http://www.iteye.com/news/12868
-------------------------------------------- mysql数据库: select * from table LIMIT 5,10; #返回第6-15行数据 select * from table LIMIT 5; #返回前5行 select * from table LIMIT 0,5; #返回前5行 ------------------------------------------------------------------ sqlserver数据库: SELECT TOP 10 * FROM TestTable WHERE (ID NOT IN ...
jdbc:oracle:thin:@localhost:1521:orcl
spring 集成框架的乱码问题,真是搞了很久,下面我就提几点注意的地方:
首先,spring提供了在web.xml容器加载时的filter来进行jsp/*.do的转发过滤,需要给filter提供转码方式如:utf-8,gbk,gb2312等。
1、在web.xml中加入依赖于org.springframework.web.filter.CharacterEncodingFilter的filter来控制controller层的转码:
<filter> <filter-name>encodingFilter</filter-name> ...
office2007破解方法1.使用序列码安装完毕2.关闭所有Office程序开始,运行regedit,打开注册表找到HKEY_LOCAL_MACHINE\Software\Microsoft\Office\12.0\Registration删除子键ProductName、DigitalProductID 及 ProductID关闭注册表找到C:\ProgramFiles\CommonFiles\MicrosoftShared\OFFICE12\OfficeSetup Controller\Proof.en\Proof.XML 文件修改<Feature Id="SetupXmlF ...
一、简介 1.1、概述 随着WEB2.0及 ajax思想在互联网上的快速发展传播,陆续出现了一些优秀的Js框架,其中比较著名的有Prototype、YUI、jQuery、mootools、 Bindows以及国内的JSVM框架等,通过将这些JS框架应用到我们的项目中
引用
能够 ...
- 2009-12-07 10:03
- 浏览 782
- 评论(0)