`
iloveflower
  • 浏览: 80251 次
社区版块
存档分类
最新评论
  • iloveflower: 呵呵。好好学习。。。。。。。。。。。。
    java 读书
  • Eric.Yan: 看了一点,不过是电子版的……你这一说到提醒我了,还要继续学习哈 ...
    java 读书
文章列表
There are some important things to note with the solutions given above: Garrett's solution, with Arrays.asList() is efficient because it doesn't need to copy the content of the array. This method returns a List that is a "view" onto the array - a wrapper that makes the array look like a ...
http://blog.sina.com.cn/s/blog_3f4dc73b0100afub.html
Question: 1) Write code to check a String is palindrome or not? 以下是我一开始写的CODE,后来仔细一看就有很多问题了: public class CheckStringPalindrome { String original; public CheckStringPalindrome(String inputStr) { this.original = inputStr; } private boolean checkStrNotNull() { if ( this.original == null ...
http://jqueryui.com/demos/autocomplete/#remote-jsonp http://hi.baidu.com/li_mingzhu/blog/item/1279308d319a0ea60e2444fd.html
http://viralpatel.net/blogs/2012/05/spring-3-mvc-autocomplete-json-tutorial.html Java Spring MVC3 Annotations, Jquery & Json : AutoComplete Example Java Spring MVC 3 Annotations, Jquery and Json AutoComplete  : - 1 Create a Dynamic Web Project in Eclipse.2 Add the below jars to library.    ...
I’m always on the search on good interview questions as I’m doing a lot of IT recruiting. Sometimes in interviews I talk about books the candidate has read recently, to gain some insight into his interrest and enthusiasm – Amazon looks into enthusiasm as an indicator for good candidates. Another ap ...
Java Interview questions: Write a String Reverser (and use Recursion!) Interviewing developers for a programming job is hard and tedious. There are some excellent Guides, like the Joel Guerilla Guide to interviewing, but in the end you need to decide yourself to hire or not to hire. To get a quick i ...
http://jonas.ow2.org/JONAS_5_1_1/doc/doc-en/html/ejb2_programmer_guide.html 1. Developing EJB 2.1 Session Beans 1.1. EJB 2.1 Session Beans Description 1.1.1. Introduction 1.1.2. The Home Interface 1.1.3. The Component Interface 1.1.4. The Enterprise Bean Class 1.2. Tuning EJB 2.1 session beans ...
Interface : 实现interface用空心三角形加虚线表示。 class: 继承用空心三角形加实线表示。 关联关系用实线箭头来表示。 聚合表示一种弱的“拥有”关系,体现的是A可以包含B,但B不是A的一部分,用空心的菱形+实线箭头表示。(大雁和雁群) 合成(composition)是一种强的拥有关系,体现了严格的部分和整体的关系,部分和整体的生命周期一样,合成关系用实心的的菱形+实线箭头表示。如鸟和翅膀。 依赖关系(Dependency)用虚线来表示。

web.xml

<?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE web-app     PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"     "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app>     <display-name>       The name of the appl ...

JSF配置常用说明

    博客分类:
  • JSF
http://www.itzhai.com/jsf-notes-jsf-configuration-file-configuration-instructions-and-common-elements.html 传统MVC框架的简化流程图: 所有的Web应用都是基于请求/响应架构的,虽然说JSF不是基于请求/响应的,而是以事件响应机制来进行通信的,可以将视图页面的UI组件状态绑定到托管Bean,也可以通过视图页面中UI组件的事件来触发托管Bean的方法,但这些都是开发者所看到的,其实只是JSF做了进一步的封装而已。 JSF也是一个MVC框架,依然无法改变Web应用的请求/响应的基 ...
http://www.blogjava.net/SmileFace/archive/2006/12/21/89179.html 首先:java没有叫 全局变量 的东西(有全局变量还叫OO吗?);原因:Java将所有设计都基于对象的基础上。Java的全局变量只能对一个类内部而言。能够在类内的任何地方使用的变量就是全局变量,而只在某个特定的函数或者局部的程序块内使用的变量则是局部变量。 所以:声明为static的变量实质上就是全局变量。当声明一个对象时,并不产生static变量的拷贝,而是该类所有的实例变量共用同一个static变量。 使用:java中只有static和非static变量,这个 ...
http://developer.51cto.com/art/200907/136757.htm Java高手必会的要点 1. 你需要精通面向对象分析与设计(OOA/OOD)、涉及模式(GOF,J2EEDP)以及综合模式。你应该了解UML,尤其是class、object、interaction以及statediagrams. 2. 你需要学习Java语言的 ...
This is the simplest wat to get the File object to which a certain URL object is pointing at: File file=new File(url.toURI()); Now, for your concrete questions: •finding all resources in the META-INF "directory": You can indeed get the File object pointing to this URL Enumeration<U ...
JSF Navigation by Examples JSF导航文件设置示例 作者: Sergey Smirnov 翻译:fei 原文见 http://forum.exadel.com/viewtopic.php?t=579 The JavaServer Faces (JSF)的Navigation框架提供了一些导航规则,可以使您在设计网站应用程序时定义view(大部分是JSP页面)之间的页面导航。这些规则和 其他一些设置一起定义在JSF配置文件中。该文件的名称一般是 faces-config.xml 。不过完全可以把这个文件名改成其他名字,甚至可以用多个配置文件来存放相关 ...
Global site tag (gtag.js) - Google Analytics