自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (13)
  • 收藏
  • 关注

原创 Spring IOC

<br />基本了解以下几点。<br />1.什么是ioc?<br />2.ioc的优点?<br />3.spring ioc在工程中的具体实现?<br /> <br />1.什么是Ioc<br />IOC翻译成中文控制反转,依赖注入等。以前我们都通过new来创建一个对象,现在把控制权交由第三方Ioc来帮我们创建对象。<br /> <br />2.ioc的优点<br /> ioc的优点就是降低了代码的耦合度,创建对象只需配置文档,便于统一管理。<br /> <br />3.spring ioc在工程中的

2010-06-02 13:47:00 441

转载 数据库取前几条记录的语句

数据库取前几条记录的语句 1. ORACLE SELECT * FROM TABLE1 WHERE ROWNUM2. INFORMIX SELECT FIRST N * FROM TABLE1 where 1=1 3. DB2 SELECT * ROW_NUMBER() OVER(ORDER BY COL1 DESC) AS ROWNUM WHERE ROWNUM

2010-05-25 15:52:00 625

原创 Java实现文件上传功能

文件上传代码:public void uploadFile(){try{ //创建临时文件夹 initFolder(); }catch(Exception e) { e.printStackTrace(); makeJS(request,out,"创建临时文件夹失败!"); return; } DiskFileUploa

2010-05-10 13:07:00 8052 1

原创 Spring数据库及事务配置(ibatis)

                                       /WEB-INF/config/config.properties                                                 ${jdbc.driverC

2010-05-08 16:38:00 634

原创 Java实现Email发送

代码如下:import java.util.Date;import java.util.Properties;import javax.mail.Message;import javax.mail.Session;import javax.mail.Transport;import javax.mail.internet.InternetAddress;import j

2010-05-08 14:21:00 586

转载 myeclipse8 svn插件安装

打开MyEclipse8.0help->Software Updates->find and install(如果没有这个就用help->Software Updates->Add/Remove Software即可)选择search for new features to install, Next点击new remote site输入name:subclipse,url:http://subc

2010-05-05 17:03:00 364

转载 英文 REDHAT AS5 中文语言包安装

1、按顺序安装如下包:中文支持fonts-chinese-3.02-12.el5.noarch.rpmm17n-db-common-cjk-1.3.3-46.el5.noarch.rpmm17n-db-chinese-1.3.3-46.el5.noarch.rpm中文输入法scim-libs-1.4.4-39.el5.i386.rpmscim-1.4.4-39.el5.i386.rpmscim-c

2010-05-04 14:13:00 1391

转载 linux下jdk的安装和卸载

 一、 jdk的安装   1. 下载jdk: 从www.sun.com下载jdk( jdk-1_5_0_20-linux-i586-rpm.bin ),下载后使用ssh上传到linux系统的home目录下,当然也可以放在其它目录。  2. 进入安装目录,修改jdk的使用权限,给所有用户添加可执行的权限: #cd /home #chmod +x jdk-1_5_0_20-linu

2010-05-04 14:00:00 506

原创 Java 小数精确计算问题

System.out.println(2.00 -1.10);//0.8999999999999999上面的计算出的结果不是0.9,而是一连串的小数。问题在于1.1 这个数字不能被精确表示为一个double,因此它被表示为最接近它的double 值,该程序从2 中减去的就是这个值,但这个计算的结果并不是最接近0.9 的double值。 一般地说,问题在于并不是所有的小数

2010-04-28 13:12:00 5734

Apache,Tomcat集群和负载均衡

Apache,Tomcat集群和负载均衡包括了apache-tomcat-5.5.29.zip,apache_2.2.4-win32-x86-no_ssl.msi,mod_jk-1.2.28-httpd-2.2.3.so,ApacheTomcat整合文档.doc,Apache,Tomcat集群和负载均衡教程.doc,Tomcat负载均衡.pdf

2010-05-15

apache_2.2.4-win32-x86-no_ssl.msi

apache_2.2.4-win32-x86-no_ssl.msi

2010-05-15

Apache,Tomcat集群和负载均衡(整合文档)

Apache,Tomcat集群和负载均衡

2010-05-15

mod_jk-1.2.28-httpd-2.2.3.so

mod_jk-1.2.28-httpd-2.2.3.so

2010-05-15

Java 解惑 (中文)

关于java开发中经常可能会碰到的一些疑惑。本书作一一详解。

2010-04-28

Java 设计模式 (常用23种设计模式)

《Java设计模式》面向有一定Java语言基础和一定编程经验的读者,重点探讨在Java程序设计中怎样使用著名的23个设计模式。《Java设计模式》的目的是让读者不仅学习怎样在软件设计中使用好设计模式,更重要的是让读者通过学习使用设计模式深刻地理解面向对象的设计思想,以便更好地使用面向对象语言解决设计中的诸多问题。

2010-04-08

Expert one-on-one J2EE Design and Development(part2)

J2EE provides many architectural choices. J2EE also offers many component types (such as servlets, EJBs, JSP pages, and servlet filters), and J2EE application servers provide many additional services. While this array of options enables us to design the best solution for each problem, it also poses dangers. J2EE developers can be overwhelmed by the choices on offer, or can be tempted to use infrastructure inappropriate to the problem in hand, simply because it's available. In this book I aim to help professional J2EE developers and architects make the appropriate choices to deliver high-quality solutions on time and within budget. I'll focus on those features of J2EE that have proven most useful for solving the commonest problems in enterprise software development. In this chapter, we discuss the high-level choices in developing a J2EE architecture, and how to decide which parts of J2EE to use to solve real problems. We'll look at: ❑ Distributed and non-distributed applications, and how to choose which model is appropriate ❑ The implications for J2EE design of changes in the EJB 2.0 specification and the emergence of web services ❑ When to use EJB ❑ Data access strategies for J2EE applications ❑ Four J2EE architectures, and how to choose between them ❑ Web tier design ❑ Portability issues

2010-04-07

Expert one-on-one J2EE Design and Development(part1)

J2EE provides many architectural choices. J2EE also offers many component types (such as servlets, EJBs, JSP pages, and servlet filters), and J2EE application servers provide many additional services. While this array of options enables us to design the best solution for each problem, it also poses dangers. J2EE developers can be overwhelmed by the choices on offer, or can be tempted to use infrastructure inappropriate to the problem in hand, simply because it's available. In this book I aim to help professional J2EE developers and architects make the appropriate choices to deliver high-quality solutions on time and within budget. I'll focus on those features of J2EE that have proven most useful for solving the commonest problems in enterprise software development. In this chapter, we discuss the high-level choices in developing a J2EE architecture, and how to decide which parts of J2EE to use to solve real problems. We'll look at: ❑ Distributed and non-distributed applications, and how to choose which model is appropriate ❑ The implications for J2EE design of changes in the EJB 2.0 specification and the emergence of web services ❑ When to use EJB ❑ Data access strategies for J2EE applications ❑ Four J2EE architectures, and how to choose between them ❑ Web tier design ❑ Portability issues

2010-04-07

Expert one-on-one J2EE Design and Development 中文版(第三部分)

J2EE provides many architectural choices. J2EE also offers many component types (such as servlets, EJBs, JSP pages, and servlet filters), and J2EE application servers provide many additional services. While this array of options enables us to design the best solution for each problem, it also poses dangers. J2EE developers can be overwhelmed by the choices on offer, or can be tempted to use infrastructure inappropriate to the problem in hand, simply because it's available. In this book I aim to help professional J2EE developers and architects make the appropriate choices to deliver high-quality solutions on time and within budget. I'll focus on those features of J2EE that have proven most useful for solving the commonest problems in enterprise software development. In this chapter, we discuss the high-level choices in developing a J2EE architecture, and how to decide which parts of J2EE to use to solve real problems. We'll look at: ❑ Distributed and non-distributed applications, and how to choose which model is appropriate ❑ The implications for J2EE design of changes in the EJB 2.0 specification and the emergence of web services ❑ When to use EJB ❑ Data access strategies for J2EE applications ❑ Four J2EE architectures, and how to choose between them ❑ Web tier design ❑ Portability issues

2010-04-07

Expert one-on-one J2EE Design and Development 中文版(第二部分)

J2EE provides many architectural choices. J2EE also offers many component types (such as servlets, EJBs, JSP pages, and servlet filters), and J2EE application servers provide many additional services. While this array of options enables us to design the best solution for each problem, it also poses dangers. J2EE developers can be overwhelmed by the choices on offer, or can be tempted to use infrastructure inappropriate to the problem in hand, simply because it's available. In this book I aim to help professional J2EE developers and architects make the appropriate choices to deliver high-quality solutions on time and within budget. I'll focus on those features of J2EE that have proven most useful for solving the commonest problems in enterprise software development. In this chapter, we discuss the high-level choices in developing a J2EE architecture, and how to decide which parts of J2EE to use to solve real problems. We'll look at: ❑ Distributed and non-distributed applications, and how to choose which model is appropriate ❑ The implications for J2EE design of changes in the EJB 2.0 specification and the emergence of web services ❑ When to use EJB ❑ Data access strategies for J2EE applications ❑ Four J2EE architectures, and how to choose between them ❑ Web tier design ❑ Portability issues

2010-04-07

Expert One-on-One J2EE Design and Development 中文版(第一部分)

J2EE provides many architectural choices. J2EE also offers many component types (such as servlets, EJBs, JSP pages, and servlet filters), and J2EE application servers provide many additional services. While this array of options enables us to design the best solution for each problem, it also poses dangers. J2EE developers can be overwhelmed by the choices on offer, or can be tempted to use infrastructure inappropriate to the problem in hand, simply because it's available. In this book I aim to help professional J2EE developers and architects make the appropriate choices to deliver high-quality solutions on time and within budget. I'll focus on those features of J2EE that have proven most useful for solving the commonest problems in enterprise software development. In this chapter, we discuss the high-level choices in developing a J2EE architecture, and how to decide which parts of J2EE to use to solve real problems. We'll look at: ❑ Distributed and non-distributed applications, and how to choose which model is appropriate ❑ The implications for J2EE design of changes in the EJB 2.0 specification and the emergence of web services ❑ When to use EJB ❑ Data access strategies for J2EE applications ❑ Four J2EE architectures, and how to choose between them ❑ Web tier design ❑ Portability issues

2010-04-07

ibatis 开发详解

iBatis是又一个O/R Mapping解决方案,j2ee的O/R方案真是多,和Hibernate相比,iBatis最大的特点就是小巧,上手很快。如果你不需要太多复杂的功能,iBatis是能满足你的要求又足够灵活的最简单的解决方案。

2010-04-06

EJB3.0 中文版

本书主要介绍EJB3.0标准,是获奖权威参考书EntERPrise javaBeans的最新第5版。全书内容主要分为两大部分,第一部分是EJB 3.0的标准技术手册,主要介绍EJB概念、EJB工作原理及使用方法;第二部分是JBoss实践指南,详细阐述了JBoss的安装、配置、运行、JBoss Application Server等相关内容。

2010-04-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除