- 浏览: 143022 次
- 性别:
- 来自: 新都
最新评论
-
zhoucanji:
楼主的示例不错,本人亲试可以
FreeMarker应用一例——生成Java代码(转) -
asd2523011:
楼主可以把程序打包提供下载吗?我试了一下,一直是堆栈溢出的错误 ...
在spring配置jdbc-pool连接池 -
geduo:
发个demo吧, 谢谢,客户端和服务端 都发下 3037049 ...
android + Spring RESTful 简单登录 -
zhou85xin:
既然用的连接池 为什么还要调用close方法呢
在spring配置jdbc-pool连接池 -
zw1502071:
楼主您好,有没有websphere在spring配置数据源的方 ...
在spring配置jdbc-pool连接池
文章列表
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans default-lazy-init="true">
<!-- 数据源 -->
<bean id="xger ...
package com.xuguang.ext.xgerp.comm.workshop.bean;
import java.io.Serializable;
import java.util.List;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.p ...
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!--sql链接地址和默认的数据库名-->
...
在Ext中,经常会遇到这样或那样的数据类型,比如时间型、金额等,虽然Ext也自带了几种。但是还是远远不够的。
那天做到这部分的时候。在网上找了一些类型。和大家一起分享一下。
Ext.apply(Ext.form.VTypes,
{
password: function(val, field)
{
if (field.initialPassField)
{
var pwd = Ext.getCmp(field.initialPassField);
return ...
常用的元字符
. 匹配除换行符以外的任意字符
\w 匹配字母或数字或下划线或汉字
\s 匹配任意的空白符
\d 匹配数字
\b 匹配单词的开始或结束
^ 匹配字符串的开始
$ 匹配字符串的结
常用的限定符
* 重复零次或更多次
+ 重复一次或 ...
Ext xtype 类型
xtype Class
------------- ------------------
box Ext.BoxComponent 具有边框属性的组件
button Ext.Button 按钮
colorpalette Ext.ColorPalette 调色板
component Ext.Component 组件
container Ext.Container 容器
cycle Ext.CycleButton ...
修改server.xml,定义一个新的WEB应用
server.xml此文件的具体路径如下:D:\Program Files\Apache Software Foundation\Tomcat 5.0\conf\server.xml。此server.xml文件最未尾的</Host>项之前插入一项<Context>的设置,<Context>的具体代码如下:
<Context path="/hello"
reloadable="true"
docBase="D:\eclipse\workspace\m ...
import java.util.Iterator;
import java.util.Collection;
import java.util.Enumeration;
import java.lang.reflect.Type;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.ref ...
package com.xuguang.af.util;
import java.beans.PropertyEditorSupport;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* jsp useBean 自省时将string转换为date
* 使用PropertyEditorManager.registerEditor(Date.class,DatePropertyEditor)注册
* @author ztw
*
*/
public class DatePropertyEd ...
<style type="text/css">
<!--
body,table, td, a {font:9pt;}
/*重点:固定行头样式*/
.scrollRowThead{position: relative;
left: expression(this.parentElement.parentElement
.parentElement.parentElement.scrollLeft);
z-index:0;}
/*重点:固定表头样式*/
.scrollColThead {position: relative;
top: ...
关键字:居中,CSS,方法
描述:使用CSS实现垂直居中并不容易。有些方法在一些浏览器中无效。下面我们看一下使对象垂直集中的5种不同方法,以及它们各自的优缺点。 H3方法一/H3 这个方法把一些div的显示方式设置为表格,因此我们
使用 CSS 实现垂直居中并不容易。有些方法在一些浏览器中无效。下面我们看一下使对象垂直集中的5种不同方法,以及它们各自的优缺点。
方法一
这个方法把一些 div 的显示方式设置为表格,因此我们可以使用表格的 vertical-align property 属性。
<div id="wrapper">
<div id= ...
eclipse是非常棒的Web开发工具,有各种丰富的插件可以选择,通过eclipse再配置适当的插件,可以让web开发变得轻松,变得更可控。
配置eclipse支持jsp,php,js很简单,步骤如下:
一、下载软件
1.最新稳定版本eclipse-SDK-3.5-win32.zip,根据自己的系统选择版本。这里下载的是Eclipse Classic 3.5 - Windows (141 MB)
URL:http://www.eclipse.org/downloads/
2.下载tomcat支持补丁,支持tomcat的补丁。下载的文件是tomcatPluginV321.zip
URL ...
代码:
var grid = new Ext.grid.GridPanel({
renderTo: document.body,
frame: true,
title: '邮件回复',
height: 500,
store: store,
columns: [
{header: 'ContentPK', dataIndex: 'contentPK',sortable: true},
{header: 'msgPK', dataIndex: 'message.msgPK',sortable: true},
{header: '主题', ...
if exists(select * from sysobjects
where name= '表名'
and type = 'U')
drop table 表名
go
临时表要用下面的方法判断
create table #test(name char(8))
if exists (select * from tempdb.dbo.sysobjects where id = object_id(N'tempdb..#test') and type='U')
print '#test exists'
用户表和系统表可以表下面的方法判断。
IF OBJECTPROPERTY ( ...
object references an unsaved transient instance - save the transient instance before flushing: com.xuguang.u8.rdrecord.bean.RdRecordTubeCode
hibernate 配置如下
<class name="RdRecords" table="rdrecords" schema="dbo">
<id name="autoID">
<generator ...
- 2009-12-04 11:19
- 浏览 7017
- 评论(0)