- 浏览: 80243 次
最新评论
-
iloveflower:
呵呵。好好学习。。。。。。。。。。。。
java 读书 -
Eric.Yan:
看了一点,不过是电子版的……你这一说到提醒我了,还要继续学习哈 ...
java 读书
文章列表
作者: cschalk
翻译: icess http://blog.matrix.org.cn/page/icess
JSF新手可能常常听到 "JSF Request Processing Lifecycle" ,但是不一定知道在生命周期中都发生了什么事情.
这里有一点代码, 一个 PhaseListener, 我们可以用她来了解 JSF's R ...
- 2012-05-29 01:47
- 浏览 1218
- 评论(0)
http://www.ibm.com/developerworks/cn/websphere/library/techarticles/0305_issw/recommendedreading.html
- 2012-05-26 02:20
- 浏览 598
- 评论(0)
摘自 IBM WebSphere 开发者技术期刊。
引言
在过去的几乎整整十年中,人们编写了很多有关 Java™ Platform, Enterprise Edition (Java EE) 最佳实践的内容。现在有十多本书籍和数以百计(可能更多)的文章,提供了关于应该如何编写 Java EE ...
- 2012-05-26 02:06
- 浏览 651
- 评论(0)
step by step guide to DWR 3.RC1 and Sprig 3.0.2 Integration
Here are the required steps to integrate dwr and spring-mvc framework. There are some other pages about this topic on the net, but most of them are about previous versions and do not work for dwr3 and spring 3.0.2. Beloware the steps that ...
- 2012-05-25 04:16
- 浏览 1506
- 评论(0)
http://blog.csdn.net/bruesz/article/details/6977031#
step 1:导入需要的两个Jar包:(下载地址:http://directwebremoting.org/dwr/downloads/index.html)
•dwr.jar
•commons-logging-1.1.1.jar
第二步:创建web.xml文件 (目录在War/WEB-INF/lib/下)
01.<?xml version="1.0" encoding="UTF-8"?>
02.<web-app xml ...
- 2012-05-25 03:50
- 浏览 811
- 评论(0)
http://directwebremoting.org/dwr/documentation/server/integration/spring.html
http://www.butterdev.com/dwr/2009/12/dwr-3-x-and-spring/
December 6, 2009
DWR 3.x and Spring
If you want to integrate DWR 3.x with Spring you can follow my previous posts (note – I have included a working sample applica ...
- 2012-05-17 22:04
- 浏览 1183
- 评论(0)
http://www.coderanch.com/t/543976/Web-Services/java/Steps-creating-Remote-Java-WebServices
Configuring JBoss:
1.) To run JBoss through eclipse, simply add it to the servers.
2.) To run JBoss on local host (explorer), go to JBoss folder, then bin, and then simply run the Run.bat file. By default i ...
- 2012-05-17 22:01
- 浏览 1209
- 评论(0)
http://paulgrenyer.blogspot.co.uk/2011/11/catalina-ant-for-tomcat-7.html
I recently upgraded from Tomcat 6 to Tomcat 7 and all of my Ant deployment scripts stopped working. I eventually worked out why and made the necessary changes, but there doesn’t seem to be a complete description of how to use C ...
- 2012-05-17 11:03
- 浏览 1052
- 评论(0)
http://sites.google.com/site/sritechforjava/spring-docs/spring-mvc-basics
Assuming that the student knows basic web application structure and all the configuration files required for Basic web application.
Assuming that the student knows Servlets.
To create Annotation based Spring MVC web applicati ...
- 2012-05-16 23:31
- 浏览 737
- 评论(0)
Spring MVC Tutorial
- 博客分类:
- SSH
http://www.mkyong.com/tutorials/spring-mvc-tutorials/
Happy learning Spring MVC
Let go through a quick start to understand how Spring MVC framework works.
Spring 3 MVC hello world example
what you need to develop Spring 3 MVC web application.
Spring 3 REST hello world example
Develop REST style we ...
- 2012-05-16 03:57
- 浏览 2357
- 评论(0)
关键字:Hibernate注释大全收藏
- 博客分类:
- SSH
关键字:Hibernate注释大全收藏
声明实体Bean
@Entity
public class Flight implements Serializable {
Long id;
@Id
public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
}
@Entity 注解将一个类声明为实体 Bean, @Id 注解声明了该实体Bean的标识属性。
Hibernate 可以对类的属性或者方法进行注解。属性对应field类别,方法的 getXxx( ...
- 2012-05-16 03:50
- 浏览 653
- 评论(0)
come from: http://blog.csdn.net/wangyu937/article/details/4572186
1.struts与spring集成
Spring 和 struts 整合的四种方式。
1.使用Spring 的 ActionSupport
2.使用Spring 的 DelegatingRequestProcessor 类。
3.全权委托。org.springframework.web.struts.DelegatingActionProxy
4.使用 org.springframework.web.struts.AutowiringRequestP ...
- 2012-05-15 23:17
- 浏览 679
- 评论(0)
public class ScrollableSupportJdbcTemplate extends SimpleJdbcTemplate {
public ScrollableSupportJdbcTemplate(DataSource dataSource) {
super(dataSource);
}
public ScrollableSupportJdbcTemplate(JdbcOperations classicJdbcTemplate) {
super(classicJdbcTemplate);
}
public ScrollableSupportJdbc ...
- 2012-05-15 01:29
- 浏览 1025
- 评论(0)
Object class holds some very interesting method which is applicable at object level and one of them is equals () which we are going to discuss in this article. equals () method is used to compare the equality of two object. default implementation of equals() class provided by Object class compares me ...
- 2012-05-12 02:57
- 浏览 1537
- 评论(0)
Programming questions are integral part of any java or C++ programmer or software analyst interview. No matter on which language you have expertise it’s expected that you are familiar with fundamental of programming and can solve problems without taking help of API. specially for java developers prog ...
- 2012-05-12 02:48
- 浏览 906
- 评论(0)