首页

搜索结果

"category:/java"

<<上篇 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 下篇>>

标题及摘要 日期/时间
321
Eclipse Jbuilder与app Server、Ant、VSS集成
Eclipse Jbuilder与app Server、Ant、VSS集成
2006-11-1
14:44:07
322
Mysql Hibernate Struts Tomcat中文问题解决方法
Mysql 的版本经常变化,对字符集的支持也是经常变化;mysql 的 JDBC Driver的版本也经常变化,而且mysql JDBC Driver本身也不完善,不仅仅是中文问题。本文介绍一个特定环境的中文处理办法,思想是在所有的地方都一致的使用GBK编码。
2006-11-1
14:39:19
323
A developer's guide to EJB transaction management
Overview This article describes the principles of transaction management in an EJB from the perspective of a Java developer; that is, it explains what the developer has to do to take advantage of the transaction management facilities offered by the E...
2006-10-31
12:01:44
324
ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations)解决方法
org.hibernate.ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations)解决方法: 1. To delete a Parent: a. Make sure your Parent is not associated to any parent. b. Delete the Parent and all connected ...
2006-10-31
11:42:33
325
Hibernate Reference Documentation
Hibernate Reference Documentation
2006-10-20
13:30:04
326
你如何做测试?(How do you test?)
by Dejan Bosanac in Articles After introduction of Test Driven Development (TDD) there was only one “testing related mantra” for developers: write test, write code, refactor and that was the point were all further discussion stopped. Of ...
2006-10-17
19:13:21
327
如何做代码评审(Code Reviews)
这篇文章谈到了: 1、代码评审的目的 2、减少代码评审成本 3、评审什么 4、什么时候评审 5、自动化评审 6、评审指南
2006-10-17
18:58:10
328
Integrate advanced search functionalities into your apps
集成Lucene的高级搜索功能到你的应用程序。 这篇文章谈到了,如何创建索引,如何使用条件搜索,如何对搜索结果排序
2006-10-17
14:12:05
329
实现java.util.Comparator接口,对对象集合进行多属性组合排序
实现java.util.Comparator接口,对对象集合进行多属性组合排序,List列表排序,多列组合排序
2006-10-13
23:03:42
330
Java 多线程的Thread类和Runnable接口
  Thread 类 Thread 类是一个具体的类,即不是抽象类,该类封装了线程的行为。要创建一个线程,程序员必须创建一个从 Thread 类导出的新类。程序员必须覆盖 Thread 的 run() 函数来完成有用的工作。用户并不直接调用此函数;而是必须调用 Thread 的 start() 函数,该函数再调用 run()。下面的代码说明了它的用法: 创建两个新线程 import java.util.*; class TimePrinter extends Thread { int pauseT...
2006-10-13
22:59:49
331
Exception Handling in Web Applications
If you've ever diagnosed a bug in a web application, you've undoubtedly experienced annoyance digging through a list of fifteen exception stack traces trying to identify the one you're interested in (if it's even present), or a sinking feeling when you ta...
2006-10-13
22:57:55
332
Step into the J2EE architecture and process
Summary The Java 2 Enterprise Edition (J2EE) Platform is defined by four key pieces: the specification, the reference implementation, the compatibility test suite, and the BluePrints program. BluePrints describes the best practices and design guideline...
2006-10-13
22:50:34
333
Implementing Business Logic in J2EE
My previous two articles in this series have provided a general overview of the Java 2 Platform, Enterprise Edition (J2EE) and a more detailed look at the technologies contained within the web-tier of the J2EE platform. Using these technologies allows us ...
2006-10-13
22:49:21
334
Give Your Business Logic a Framework with Drools
Most web and enterprise Java applications can be split into three parts: a front end to talk to the user, a service layer to talk to back-end systems such as databases, and business logic in between. While it is now common practice to use frameworks for b...
2006-10-13
22:46:31
335
应用Appfuse3.0.0加速web应用程序的开发
1、 设置MAVEN环境变量: MAVEN_HOME=D:\shebeiguanli\apache-maven-3.2.5 PATH=%MAVEN_HOME%\bin 2、 修改D:\shebeiguanli\maven-2.0.7\conf\settings.xml, 将localRepository/shebeiguanli/.m2/repository/localRepository修改为实际的目录 3、 新建目录test,创建项目 cd E:\appfuse\test mvn archety...
2006-10-10
15:17:48
336
Domain Service Owner Transaction Design Pattern
spring transaction 設計
2006-10-10
14:26:06
337
Agile Object to Relational Database Replication with db4o
在db4o与不同的关系数据库之间复制数据,基于hibernate,db4o Replication System
2006-10-9
20:27:42
338
Wire Hibernate Transactions in Spring
  本文主要探讨如何利用Spring来装配组件,包括其事务上下文。从J2EE应用程序内部连接到单个的数据库并不是什么难事。但是,如果要装配或者集成企业级的组件,情况就复杂了。一个组件可以有一个或多个支持它的数据库,因此,当装配两个或更多的组件时,我们希望能够保持在跨组件的多个数据库中进行的操作的原子...
2006-10-9
20:21:26
339
The 2nd most useful Java-Oracle Tool for 2006
The 2nd most useful Java-Oracle Tool that I’ve used this year is schema spy. How often have you taken over a project without any documenation? Even worse , there is a database involved, and everybody just ‘knows’ (or pretends to know) where things ar...
2006-10-9
20:10:19
340
使用native2ascii进行本地码-至-ASCII 码互相转换
Usage: native2ascii [-reverse] [-encoding encoding] [inputfile [outputfile]] 选项[-reverse]为反向转换 native2ascii -encoding GBK -reverse resources_zh_CN.properties resources_zh_CN.properties.source native2ascii -encoding GBK resources_zh_CN.properties.so...
2006-10-9
19:53:55

<<上篇 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 下篇>>