内容列表
自由自在的给上传图片打水印
我是结合在jspsmart.upload下使用的,这个是imgbean的代码package com.pic; import java.awt.*;import java.awt.event.*;import java.io.*;import java.awt.image.*;import org.w3c.dom.*;import com.sun.image.codec.jpeg.*;import
分类:Java 查阅全文
一个简单的学习spring+hibernate的例子
我打算写一个简单的名片管理程序来学习spring,hibernate, 同时学习测试驱动开发,为了避开web复杂性我决定写一个console上显示的程序。今天写了MyInfo.java, IUserDAO.java, UserDAOList.javaUserDAOListTest.java beans.xml环境需求spring.jar, junit.jar, commons-loggi
分类:Java 查阅全文
我的SCJP 1.4 考证经历
        前段时间一直忙着考证,趁考完之后有段时间休息,发几篇文章上来。        我的SCJP是10月中旬报的,当时奖学金评下了,有1200吧,反正这个学期也不是很忙,而且武汉这边的SCJP说是促销,¥750,据说过了今年就¥1250了,想想现在不
分类:Java 查阅全文
基于JNDI的应用程序开发
  JNDI(The Java Naming and Directory Interface,Java命名和目录接口)是一组在Java应用中访问命名和目录服务的API。命名服务将名称和对象联系起来,使得我们可以用名称访问对象。目录服务是一种命名服务,在这种服务里,对象不但有名称,还有属性。    命名或目录服务使你可以集中存储共有信息,这
分类:Java 查阅全文
JUnit @ Eclipse 2
  Eclipse  ver 3可以直接使用JUnit Winzard创建,但在ver 2中使用前需要配置,在《Eclipse in Action》中有详细介绍。以下是其原文,加上了简单引导!一、首先创建一个工程或选择(创建)一个工作集A sample application and working sets 二、创建class variables: JUNIT 加入工程文
分类:Java 查阅全文
NetBeans中的格式化代码
1) 快捷键是 ctrl+shift+f2) 设置:在Editor Settings - Java Editor中有一项为"Indentation Engine",点击按钮后设置如下: Expand Tabs to Spaces : 不选Add Leading Start in Comment : 选中Add NewLine Before Brace : 选中Add Space Before P
分类:Java 查阅全文
JBoss用户指南
1、内容简介        本章主要介绍JBOSS(免费的EJB服务器),以及教会大家如何安装Jboss,建立你第一个EJB和客户端。关于什么是EJB,以及如何开发等。这些关于EJB方面有很多书籍进行描述,在此不再阐述。描述信息是运行在windows平台,当然你可以应用在其他支持的平台(如:Linux等)。2、关于JB
分类:Java 查阅全文
整合Java与XML的新应用
作者:谷和启       XML(eXtensible Markup Language,可扩展的标记语言)是万维网联盟(W3C)创建的一组规范,用于在Web上组织、发布各种信息。它不仅可以满足迅速增长的网络应用的需求,还能够确保网络进行交互操作时具有良好的可靠性与互操作性。      &n
分类:Java 查阅全文
J2SE5.0新特性之监控与管理
j2se 5.0使用 Java Management Extensions (JMX)来管理和监控java平台。import java.lang.management.ClassLoadingMXBean;import java.lang.management.CompilationMXBean;import java.lang.management.ManagementFactory;impor
分类:Java 查阅全文
Tutorial for building J2EE Applications using JBOSS and ECLIPSE (8)
  Chapter 8. Creating Web Clients This chapter describes how to create web clients in the Client Tier/Presentation Tier to access or otherwise communicate with the Business Tier. Servlets a
分类:Java 查阅全文
[转贴]JAR 文件揭密
 探索 JAR 文件格式的强大功能级别:入门Pagadala J. Suresh ([email protected]), 软件工程师, IBM Global Services IndiaPalaniyappan Thiagarajan ([email protected]), 软件工程师,IBM Global Services India2003年 11 月大多数 Java 程
分类:Java 查阅全文
Tutorial for building J2EE Applications using JBOSS and ECLIPSE(1)
  Chapter 1 Configuration of ECLIPSE to use JBOSS and LOMBOZ Install Eclipse. First of all we have to set up Eclipse Integrated Development Environment (IDE) with JBOSS as our application
分类:Java 查阅全文
Tutorial for building J2EE Applications using JBOSS and ECLIPSE(2)
  Chapter 2. Overview Of J2EE Technology and Concepts The Java 2 Enterprise Edition (J2EE) is a multitiered architecture for implementing enterprise-class applications and web based applica
分类:Java 查阅全文
Tutorial for building J2EE Applications using JBOSS and ECLIPSE(3)
  Chapter 3. Creating a Stateless Session Bean This chapter covers how to create a stateless session EJB component. This bean will be responsible for authenticating the user by communicatin
分类:Java 查阅全文
Tutorial for building J2EE Applications using JBOSS and ECLIPSE(4)
  Chapter 4. Creating a Stateful Session Bean This chapter covers how to create a stateful session EJB component. Unlike stateless beans, stateful bean instances are associated with a parti
分类:Java 查阅全文
Tutorial for building J2EE Applications using JBOSS and ECLIPSE (5)
  Chapter 5. Creating a BMP Entity Bean This chapter describes how to create a Bean Managed Persistence (BMP) EJB component. We will create two BMP beans, Customer and Manager, as shown bel
分类:Java 查阅全文
Tutorial for building J2EE Applications using JBOSS and ECLIPSE (7)
  Chapter 7. Creating a Message Driven Bean This chapter covers how to create a Message Driven Bean (MDB) EJB component. We will create two MDB beans, DeliverItems and RequestItems as shown
分类:Java 查阅全文
Java I/O API之性能分析
摘要: IO API的可伸缩性对Web应用有着极其重要的意义。Java 1.4版以前的API中,阻塞I/O令许多人失望。从J2SE 1.4版本开始,Java终于有了可伸缩的I/O API。本文分析并计算了新旧I/O API在可伸缩性方面的差异。 提纲: 一、概述二、用旧API编写的HTTP服务器三、非阻塞的HTTP服务器四、注册与处理过程详解五、可伸缩性的定量分析和比较 正文: 一、概
分类:Java 查阅全文
Tutorial for building J2EE Applications using JBOSS and ECLIPSE (9)
  Chapter 9 . Creating Web Services : Web services promises to be the next generation of software development. In essence, a web service is a means of interfacing to web or enterprise app
分类:Java 查阅全文
JDBC应用的一些闲话
在以java application server应用为主的平台是,JDBC的最高级应用是DataSource的实现,其它的,JDO,webcache,hibernate等不过是一种封装,所以看数据库应用的性能,主要看据库连结的利用率,所以,DataSource可以说是J2EE最最重要的应用.对于主流的数据库,如mysql,mssqlserver,oracle,从其通用的性能来
分类:Java 查阅全文
<< 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 >>