- 浏览: 390944 次
- 性别:
- 来自: 深圳
-
文章分类
最新评论
-
Nabulio:
写的详细,特殊语法学习到了
jdk1.5-1.9新特性 -
wooddawn:
您好,最近在做个足球数据库系统,用到了betbrain的数据表 ...
javascript深入理解js闭包 -
lwpan:
很受启发 update也可以
mysql 的delete from 子查询限制 -
wuliaolll:
不错,总算找到原因了
mysql 的delete from 子查询限制
1.What is Test Driven Development (TDD)?
优点:在任意一个开发节点都可以拿出一个可以使用,含少量bug并具一定功能的产品。
缺点:增加代码量。测试代码是系统代码的两倍或更多。
TDD = TFD + Refactoring
(TFD -- Test First Development)
2.What is the point of Test Driven Development (TDD)? What do you think of TDD
What is aspect oriented programming (AOP)? Do you have any experience with AOP?
http://baike.baidu.com/view/76310.htm#sub8243857
3.What are the differences between OOP and AOP?
AOP、OOP在字面上虽然非常类似,但却是面向不同领域的两种设计思想。OOP(面向对象编程)针对业务处理过程的实体及其属性和行为进行抽象封装,以获得更加清晰高效的逻辑单元划分。
而AOP则是针对业务处理过程中的切面进行提取,它所面对的是处理过程中的某个步骤或阶段,以获得逻辑过程中各部分之间低耦合性的隔离效果。这两种设计思想在目标上有着本质的差异。
4.What are the benefits of AOP?
http://baike.baidu.com/view/73626.htm
5.What is attribute or annotation oriented programming?
6.What are the pros and cons of annotations over XML based deployment descriptors?
7.What is XDoclet?
XDoclet是一个开源项目,可以从这里得到他:http://xdoclet.sourceforge.net/xdoclet/ 。 XDoclet可以通过你在java源代码中的一些特殊的注释信息,自动为你生成配置文件、源代码等等,例如web、ejb的部署描述文件、为你生成struts的struts-config.xml配置文件、javascript校验等
8.What is inversion of control (IoC) (also known more specifically as dependency injection)?
9.What are the different types of dependency injections?
10.What are the benefits of IoC (aka Dependency Injection)?
11.What is the difference between a service locator pattern and an inversion of control pattern?
http://blog.csdn.net/dongtg/article/details/1748110
12.Why dependency injection is more elegant than a JNDI lookup to decouple client and the service?
13.Explain Object-to-Relational (O/R) mapping?
14.Give an overview of hibernate framework?
15.Explain some of the pitfalls of Hibernate and explain how to avoid them?
16.Give some tips on Hibernate best practices?
17.Give an overview of the Spring framework? What are the benefits of Spring framework?
18.Briefly explain key features of the JavaServer Faces (JSF) framework?
19.What is a Service Oriented Architecture (SOA)?
http://baike.baidu.com/view/21305.htm#sub5033544
20.Explain the J2EE 3-tier or n-tier architecture? What's the advantage?
Explain MVC architecture relating to J2EE?
21.HTTP is a stateless protocol, so, how do you maintain state? How do you store user data between requests?
22.What are ear, war and jar files? What are J2EE Deployment Descriptors?
http://blog.csdn.net/gideal_wang/article/details/6066780
23.Session tracking uses cookies by default. What would you do if the cookies are turned off?
http://blog.csdn.net/zlsunnan/article/details/133386
24.Explain the life cycle methods of a servlet?
25.What is the difference between doGet () and doPost () or GET and POST?
26.What is the difference between forwarding a request and redirecting a request?
27. What is a filter, and how does it work?
http://blog.csdn.net/gxf212/article/details/877047
28. What is client-side vs. server-side validation?
29.How do you prevent multiple submits due to repeated “refresh button” clicks?
30. Tell me about JSP best practices?
31.What is JDBC? How do you connect to a database? Have you used a Data Access Object (i.e. DAO) pattern?
32.What are JDBC Statements? What are different types of statements? How can you create them? What is the difference between statements and prepared statements?
http://blog.csdn.net/army27/article/details/5012635
33.What is a Transaction?What is a distributed transaction? How does it differ from a local transaction?
http://qify.iteye.com/blog/315619
ACID,是指在数据库管理系统(DBMS)中事务所具有的四个特性:原子性(Atomicity)、一致性(Consistency)、隔离性(Isolation,又称独立性)、持久性(Durability)。
34.What is JNDI? How do you uses within a J2EE application?
http://blog.csdn.net/h72001346/article/details/3474381
35.What is application server clustering? What's the benefit?
http://vvovv.iteye.com/blog/1490639
36.How would the JSF framework compare with the Struts framework? How would a Spring MVC framework compare with Struts framework?
优点:在任意一个开发节点都可以拿出一个可以使用,含少量bug并具一定功能的产品。
缺点:增加代码量。测试代码是系统代码的两倍或更多。
TDD = TFD + Refactoring
(TFD -- Test First Development)
2.What is the point of Test Driven Development (TDD)? What do you think of TDD
What is aspect oriented programming (AOP)? Do you have any experience with AOP?
http://baike.baidu.com/view/76310.htm#sub8243857
3.What are the differences between OOP and AOP?
AOP、OOP在字面上虽然非常类似,但却是面向不同领域的两种设计思想。OOP(面向对象编程)针对业务处理过程的实体及其属性和行为进行抽象封装,以获得更加清晰高效的逻辑单元划分。
而AOP则是针对业务处理过程中的切面进行提取,它所面对的是处理过程中的某个步骤或阶段,以获得逻辑过程中各部分之间低耦合性的隔离效果。这两种设计思想在目标上有着本质的差异。
4.What are the benefits of AOP?
http://baike.baidu.com/view/73626.htm
5.What is attribute or annotation oriented programming?
6.What are the pros and cons of annotations over XML based deployment descriptors?
7.What is XDoclet?
XDoclet是一个开源项目,可以从这里得到他:http://xdoclet.sourceforge.net/xdoclet/ 。 XDoclet可以通过你在java源代码中的一些特殊的注释信息,自动为你生成配置文件、源代码等等,例如web、ejb的部署描述文件、为你生成struts的struts-config.xml配置文件、javascript校验等
8.What is inversion of control (IoC) (also known more specifically as dependency injection)?
9.What are the different types of dependency injections?
10.What are the benefits of IoC (aka Dependency Injection)?
11.What is the difference between a service locator pattern and an inversion of control pattern?
http://blog.csdn.net/dongtg/article/details/1748110
12.Why dependency injection is more elegant than a JNDI lookup to decouple client and the service?
13.Explain Object-to-Relational (O/R) mapping?
14.Give an overview of hibernate framework?
15.Explain some of the pitfalls of Hibernate and explain how to avoid them?
16.Give some tips on Hibernate best practices?
17.Give an overview of the Spring framework? What are the benefits of Spring framework?
18.Briefly explain key features of the JavaServer Faces (JSF) framework?
19.What is a Service Oriented Architecture (SOA)?
http://baike.baidu.com/view/21305.htm#sub5033544
20.Explain the J2EE 3-tier or n-tier architecture? What's the advantage?
Explain MVC architecture relating to J2EE?
21.HTTP is a stateless protocol, so, how do you maintain state? How do you store user data between requests?
22.What are ear, war and jar files? What are J2EE Deployment Descriptors?
http://blog.csdn.net/gideal_wang/article/details/6066780
23.Session tracking uses cookies by default. What would you do if the cookies are turned off?
http://blog.csdn.net/zlsunnan/article/details/133386
24.Explain the life cycle methods of a servlet?
25.What is the difference between doGet () and doPost () or GET and POST?
26.What is the difference between forwarding a request and redirecting a request?
27. What is a filter, and how does it work?
http://blog.csdn.net/gxf212/article/details/877047
28. What is client-side vs. server-side validation?
29.How do you prevent multiple submits due to repeated “refresh button” clicks?
30. Tell me about JSP best practices?
31.What is JDBC? How do you connect to a database? Have you used a Data Access Object (i.e. DAO) pattern?
32.What are JDBC Statements? What are different types of statements? How can you create them? What is the difference between statements and prepared statements?
http://blog.csdn.net/army27/article/details/5012635
33.What is a Transaction?What is a distributed transaction? How does it differ from a local transaction?
http://qify.iteye.com/blog/315619
ACID,是指在数据库管理系统(DBMS)中事务所具有的四个特性:原子性(Atomicity)、一致性(Consistency)、隔离性(Isolation,又称独立性)、持久性(Durability)。
34.What is JNDI? How do you uses within a J2EE application?
http://blog.csdn.net/h72001346/article/details/3474381
35.What is application server clustering? What's the benefit?
http://vvovv.iteye.com/blog/1490639
36.How would the JSF framework compare with the Struts framework? How would a Spring MVC framework compare with Struts framework?
发表评论
-
将json格式的字符数组转为List对象
2015-08-10 15:18 906使用的是json-lib.jar包 将json格式的字符数组 ... -
用httpPost对JSON发送和接收的例子
2015-08-10 11:16 1100HTTPPost发送JSON: private static ... -
zookeeper适用场景:zookeeper解决了哪些问题
2015-07-31 18:01 765问题导读: 1.master挂机 ... -
java泛型
2015-07-29 10:48 771什么是泛型? 泛型(Ge ... -
Java线程Dump分析工具--jstack
2015-06-23 11:09 723jstack用于打印出给定的java进程ID或core fil ... -
什么是spark?
2015-04-10 09:37 495关于Spark: Spark是UC Berkeley AM ... -
dubbo 教程
2015-04-09 19:21 780先给出阿里巴巴dubbo的 ... -
jre/bin目录下面工具说明
2015-03-20 16:45 638jre/bin目录下面工具说明 ... -
JVM系列三:JVM参数设置、分析
2015-01-30 11:18 700不管是YGC还 ... -
jstat使用
2015-01-27 11:11 680jstat 1. jstat -gc pid ... -
查看java堆栈情况(cpu占用过高)
2015-01-27 11:10 7471. 确定占用cpu高的线程id: 方法一: 直接使用 ps ... -
慎用ArrayList的contains方法,使用HashSet的contains方法代替
2015-01-20 14:14 1148在启动一个应用的时候,发现其中有一处数据加载要数分钟,刚开始 ... -
Java虚拟机工作原理详解
2015-01-16 10:00 720一、类加载器首先来 ... -
jdk1.5-1.9新特性
2014-11-11 10:22 83411.51.自动装箱与拆箱:2.枚举(常用来设计单例模式 ... -
java动态代理(JDK和cglib)
2014-09-24 15:51 478JAVA的动态代理 代理模式 代理模式是常用的java设计 ... -
Java动态代理机制详解(JDK 和CGLIB,Javassist,ASM)
2014-09-24 15:45 699class文件简介及加载 Java编译器编译 ... -
怎么用github下载资源
2014-09-24 11:18 4581、下载github:到http://windows. ... -
maven项目时jar包没有到lib目录下
2014-09-01 20:05 2601在建项目时路径都设置好了,为什么在eclipse中运行mav ... -
使用并行计算大幅提升递归算法效率
2014-08-27 15:04 608前言: 无论什么样的 ... -
JAVA 实现FTP
2014-08-22 14:41 708一个JAVA 实现FTP功能的代码,包括了服务器的设置模块, ...
相关推荐
《Java/J2EE Job Interview Companion》是由K.Arulkumaran和A.Sivayini合著的一本针对Java/J2EE技术领域求职者准备面试的指南。本书涵盖Java的核心概念、企业级Java技术(J2EE)、以及相关框架等知识,旨在帮助读者...
Java/J2EE interview questions这本书是为准备面试的Java开发者准备的,涵盖了核心概念、设计和编码问题,以及如何应对面试中可能遇到的问题。 核心概念包括Java语言基础,比如Java语言的基本原则、语法、核心库的...
### J2EE面试问题:核心Java、EJB、JSP、Servlets、Struts、Hibernate、JDBC及相关信息 #### 一、核心Java - **基础知识**:熟悉面向对象编程的基本概念如封装、继承和多态;掌握类与对象的概念;了解接口和抽象类...
比如可以下载 SCEA Practice Questions 来进行练习。 #### 备考建议 - **时间规划**:合理安排复习时间,确保每天都有固定的学习时间。 - **强化英语能力**:由于大多数学习资料和参考资料都是英文的,因此具备...
Quiz thismismused to conduct quiz competition, this is a ready made n easy to change questions as well as answers
同花顺java面试笔试题Java、J2EE、JSP、Servlet、Hibernate 面试题 如果您喜欢该项目,请单击。 拉取请求受到高度赞赏。 目录 问:异常的类型有哪些? 解释 Java Exception 类的层次结构? 异常是一种错误事件,它...
4. **Topic 1 B Questions.doc**:这部分可能涉及的是与软件开发平台比较相关的问题,比如Microsoft .NET与Java 2 Enterprise Edition (J2EE)之间的差异,包括开发工具、运行环境、多层架构支持、部署灵活性等方面的...
同花顺java面试笔试题Java、J2EE、JSP、Servlet、Hibernate 面试题 如果您喜欢该项目,请单击。 拉取请求受到高度赞赏。 目录 问:异常的类型有哪些? 解释 Java Exception 类的层次结构? 异常是一种错误事件,它...
java面试题笔试题Java、J2EE、JSP、Servlet、Hibernate 面试题 如果您喜欢该项目,请单击。 拉取请求受到高度赞赏。 目录 问:异常的类型有哪些? 解释 Java Exception 类的层次结构? 异常是一种错误事件,它可能在...
java中异常的笔试题Java、J2EE、JSP、Servlet、Hibernate 面试问答 如果您喜欢该项目,请单击。 拉取请求受到高度赞赏。 目录 问:异常的类型有哪些? 解释 Java Exception 类的层次结构? 异常是一种错误事件,它...
The examples can be run in any J2EE 1.3 servlet container like Jakarta Tomcat. All of the pre-built WAR files were compiled against JDK 1.4, thus JDK 1.4 or newer is required to run them. The source ...
Our mailing list is very active, and the community is very happy to answer any questions you may have. Of course, patches to improve the documentation are always welcome! <br/>
However, based on the pattern of the questions, we can infer that this question might test the understanding of another aspect of Java, such as method overriding, method overloading, or anonymous ...
The examples can be run in any J2EE 1.3 servlet container like Jakarta Tomcat. All of the pre-built WAR files were compiled against JDK 1.4, thus JDK 1.4 or newer is required to run them. The source ...
These questions cover fundamental aspects of developing web components using J2EE, focusing on servlets, JSPs, and security. Understanding these concepts is crucial for anyone preparing for the SCWCD ...
- **厂商地址**:[http://www.manyeta.com/en/Technology/codagen_architect_v3.2/frequently_asked_questions](http://www.manyeta.com/en/Technology/codagen_architect_v3.2/frequently_asked_questions) ...
由于习惯了Maven的环境配置,J2EE的导包配置反而不会了,所以这里使用的框架是SpringBoot。通过一个个的单元测试构成整个练习题项目的内容。 放心,这个项目没有加任何其他JAR包,估计打了包也不准用。所以就在...
15. **J2EE**(Java 2 Platform, Enterprise Edition):Java的服务器端开发平台,包含多种企业级服务。 16. **Interview Questions**:面试问题,可能包括技术问题、项目经验以及职业素养等方面的题目。 17. **...