- 浏览: 112148 次
- 性别:
- 来自: 上海
最新评论
-
wzfj2002:
拜读,解决了偶的大问题,谢谢
让人烦恼的org.xml.sax.SAXNotRecognizedException错误 -
zhengbin917943:
写的是什么?
javascript 页面元素导航 -
wendaoke:
我也遇到这样的情况,但是后来直接写sql,就没有出现这样的问题 ...
IllegalArgumentException occurred calling getter of * -
qxk0210:
aaaaa
hibernate 源码学习 多出来的update语句 之一 -
tangcb:
[i][u]引用[list][list=][img][/img ...
一些常用的Eclipse 3.0的插件
文章列表
今天上午一直在试图解决一个display tag和webwork的结合的问题,一会查源码,一会找jsp tag 的相关的东东,但是一直没有办法,最后看到display的例子,上面有说:
Please note that the basic export functionality will not work when the JSP page is included in another page via a jsp:include or the RequestDispatcher. Front end frameworks such as Struts and Tiles will do th ...
- 2006-07-13 11:54
- 浏览 1233
- 评论(0)
http://www.matrix.org.cn/resource/article/43/43872_displayTag.html
http://displaytag.homeip.net/displaytag-examples-1.1/
<display:table name="test" class="${tableclass}">
<display:column property="id" title="ID" class="idcol"/& ...
- 2006-07-10 21:21
- 浏览 1091
- 评论(0)
今天我发现一个好用的eclipse插件,以前我一直用myeclipse来开发web应用。但是经常觉得它太大了,很多功能我用不着。于是就想换一个,今天我试了一下http://www.sysdeo.com/eclipse/tomcatplugin这一个插件,觉得它非常好用。插件大小只有274k,可是它的功能却不弱。
- 2006-07-08 22:37
- 浏览 1355
- 评论(0)
在hibernate 类ThreadLocalSessionContext中有两段source code
public final Session currentSession(); throws HibernateException {
Session current = existingSession( factory );;
if (current == null); {
current = buildOrObtainSession();;
// register a cleanup synch
current.getTransaction();. ...
- 2006-07-03 13:59
- 浏览 1336
- 评论(0)
constrained (optional) specifies that a foreign key constraint on the primary key of the mapped table references the table of the associated class. This option affects the order in which save() and delete() are cascaded, and determines whether the association may be proxied (it is also used by the sc ...
- 2006-07-01 23:16
- 浏览 2326
- 评论(0)
All right, time to build. Window... Show View... Ant opens the Ant GUI. The left-most icon (an ant being crushed to ick by a "+") lets me import a build file. I select build.xml; Eclipse thinks for a moment, then adds a line with a red error marker to the Ant view. Hmm... what's this? Click ...
- 2006-05-24 17:21
- 浏览 1613
- 评论(0)
一些常用的Eclipse 3.0的插件
1.
2.Properties Editor 编辑java的属性文件,并可以自动存盘为Unicode格式
http://propedit.sourceforge.jp/index_en.html
3.Colorer Take 为上百种类型的文件按语法着色
http://colorer.sourceforge.net/
4.XMLBuddy 编辑xml文件
www.xmlbuddy.com
5.Code Folding 加入多种代码折叠功能(比eclipse自带的更多)
http://www.coffee-bytes.com/servle ...
- 2005-08-15 15:50
- 浏览 2651
- 评论(4)
由于上面的方法,在函数中传入表的名字,这样每一个有父子关系的表都必须有一个函数,因为表名不一样。我设想是不是可以把表名传进去。于是就有了下面的写法。引用CREATE FUNCTION dbo.GetSubtreeInfo2
( @manager_id AS varchar(32) ,--待管理的节点,从哪一组开始管理
@table_name_user as varchar(50),-- 传入表的名字,使不同的表只要传入表名这个函数
@tabel_id as varchar(32),--表的主键列名
@parent_id as varchar(32)--表的父列名
)
RETURNS @t ...
- 2005-08-05 14:50
- 浏览 1346
- 评论(0)
参照上述文章:
我设计了一个表:引用if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[TEST]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[TEST]
GO
CREATE TABLE [dbo].[TEST] (
[TEST_ID] [char] (10) COLLATE Chinese_PRC_CI_AS NOT NULL ,
[NAME] [varchar] (50) COLLATE Chinese_PRC_CI ...
- 2005-08-05 14:23
- 浏览 1686
- 评论(0)
引用树形结构是一类重要的非线性结构,在关系型数据库中如何对具有树形结构的表进行查询,从而得到所需的数据是一个常见的问题。本文笔者以 SQL Server 2000 为例,就一些常用的查询给出了相应的算法与代码,颇值得读者借鉴。
树型结构
关系型数据库将数据按表结构形式进行组织。它对表格的处理方便灵活,且易学易用,因而得到广泛的应用。关系型数据库所处理的表格是线性结构的,表的每一行对应着一个数据元素,称做一条记录。记录与记录之间呈线性排列,彼此间没有联系, 然而,在解决实际问题时,常常会遇到非线性结构的数据。如下表所示,每一条纪录中的上级代码,就和其他纪录有着联系,这样就形成了一棵具有层次 ...
- 2005-08-05 14:18
- 浏览 4039
- 评论(0)
It means you are not closing your connections to return them to the pool. To avoid connection leaks you should have code like the following:
Connection connection = dataSource.getConnection();
try
{
// DO WORK
}
finally
{
try
{
connection.close();
}
catch (Throwable ignored)
{ ...
- 2005-01-03 20:49
- 浏览 1312
- 评论(0)