- 浏览: 73071 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (74)
- core Java (14)
- html (2)
- javascript (5)
- database (6)
- Design Patterns (4)
- spring (6)
- XML (0)
- other (1)
- application (1)
- Linux (Fedora 14) (1)
- Hibernate (6)
- tools (5)
- JBoss7 (1)
- J2EE (1)
- Concurrency (5)
- Linux (5)
- CSS (1)
- English (1)
- Python/Go/Shell (1)
- Container (1)
- Cloud (0)
- Kubernetes (1)
- Mac (1)
- Golang (1)
最新评论
-
MySSH:
但是我是用的eclipse-SDK-3.5.2的,里面没有or ...
jQuery 工具安装-jqueryWTP -
2022228:
废话,浪费资源
Runnable and Thread
1.什么是模式?什么是框架?
模式,即pattern。其实就是解决某一类问题的方法论。
框架一般都经过很多人使用,所以结构很好,所以扩展性也很好,而且它是不断升级的,你可以直接享受别人升级代码带来的好处。
http://study.feloo.com/computer/pro/java/sheji/200506/86259.html
2.介绍一个群件产品-Domino/Notes
http://zhidao.baidu.com/question/3028326.html?si=1
发表评论
-
Security / SSL
2016-08-30 17:31 484https://www.ssllabs.com/ssltest ... -
Java Shift Operator (signedLeftShift, signedRightShift, unsignedRightShift)
2015-03-11 11:33 487Java Shift Operator ( << ... -
File.separator vs File.pathSeparator
2014-02-24 16:51 804See: http://stackoverflow.com/ ... -
InheritableThreadLocal & ThreadLocal
2014-01-07 12:11 2596InheritableThreadLocal比Thread ... -
Java Concurrency In Practice Contents
2013-12-24 17:35 0Chapter 1 - Introduction 1 1. ... -
[转] Explain Java Encapsulation & Polymorphism & Inheritance
2013-11-01 15:02 1204Encapsulation - Hiding the i ... -
Java Create Instance Method
2013-10-22 19:04 685Java Create Instance Method ... -
Object Methodes: equals and hashCode
2013-09-10 17:31 701今天看了Object的equals() and hashC ... -
coreJava: serialVersionUID
2011-12-09 19:25 833Eclipse会检查serialVersionUI ... -
StringBuffer And StringBuilder
2011-12-08 12:00 692StringBuilder是在1.5版本时出现的,是Strin ... -
Eclipse Tools
2011-10-13 22:55 4991. Eclipse New 菜单配置 Window --& ... -
笔试题笔记
2011-07-27 23:50 3381. 请说出DOM和SAX的技术异同点 DOM先要生成DOM ... -
转载:Java程序员需要注意的十项
2010-11-07 16:03 0From: 10 Commandments for Java ... -
temp
2010-05-30 01:40 0Dojo -------------------------- ... -
练习BigDecimel and Regular Expression
2010-05-18 17:11 1218程序需求:http://joezxy.iteye.com/bl ... -
fillter in web.xml
2009-09-14 18:48 0参考文献: http://javaworld.com.tw/ ... -
Java Collections
2009-09-06 11:00 0资料来源于网上。 结构图: -
Java Collections(一): Set/List/Map
2009-09-05 20:24 0Collection: public interfac ... -
JSTL 版本选择 2.4&2.3
2009-08-25 12:01 3540JSTL与Servlet版本对映 整 ... -
Runnable and Thread
2009-07-29 15:30 5622今天看了源码,总算多少理解一点,对Runnable 和 Thr ...
相关推荐
在Java代码中,我们需要在web.xml文件中配置URLRewriteFilter,确保它在Web应用启动时被加载。如下所示: ```xml <filter-name>UrlRewriteFilter <filter-class>org.tuckey.web.filters.urlrewrite....
Java伪静态技术是一种在Web开发中用于优化搜索引擎友好度(SEO)的技术,它使得动态URL看起来像静态的HTML页面,从而提升网站的可读性和用户体验。在这个实例中,我们将探讨如何使用`urlrewrite`框架来实现Java中的...
XML(可扩展标记语言)作为一种标准的数据交换格式,在Web服务、配置文件以及其他多种应用领域有着广泛的应用。随着XML的普及,对于XML数据有效性的校验变得越来越重要。XML Schema(XSD)作为一种用于描述XML文档...
最新的版本Java EE 8进一步增强了对现代Web技术的支持,并简化了开发流程。 #### 三、Java EE的关键技术组成 1. **Servlets**:Servlets是服务器端的Java应用程序,用于处理来自客户端的HTTP请求并生成响应。 2. *...
1. **Flex**:一种用于构建桌面应用和Web应用的开源框架,支持多种平台。 2. **JSON**:一种轻量级的数据交换格式,易于人阅读和编写,同时也易于机器解析和生成。 3. **Java**:一种广泛使用的面向对象编程语言,...
ELEMENT note (to, from, heading, body)> <!ELEMENT to (#PCDATA)> <!ELEMENT from (#PCDATA)> <!ELEMENT heading (#PCDATA)> <!ELEMENT body (#PCDATA)> ]> <note> <to>George <from>John</from> <heading>...
**Answer**: Single inheritance in Java refers to a situation where one class inherits from only one other class. This is the default form of inheritance supported by Java. For example, if Class B ...
* Create Android projects from the Eclipse UI or command line * Integrate web content, images, galleries, and sounds * Deploy menus, progress bars, and auto-complete functions * Trigger actions ...
Note ———— The code is not mine and collected for the educational purpose from various blogs/ web-pages and books. Many instances, I refactored the code and occasionally, re-write some portion to ...
The tag feature promotes reusable code and abstracts Java code from the JSP file. This feature allows nice integration into JSP-based development tools that allow authoring with tags. • Tag library ...
String sql1 = "select count(*) from note"; // 查询逻辑省略 } } ``` #### 3. 分页逻辑实现 在实际应用中,分页逻辑通常需要在Servlet或JSP中实现。具体步骤如下: 1. **获取总记录数**:通过`noteDao`的`...
String sql1 = "SELECT COUNT(*) FROM note"; try { Connection conn = getConn(); Statement stmt = conn.createStatement(); ResultSet rst = stmt.executeQuery(sql1); if (rst.next()) { count = rst....
The selenium standalone server (runs on Java) is required for these tests and can be downloaded from here. They capture an actual screenshot from the test pages and compare the image to the ...
It also shows how to use an OWL ontology with SWRL rules from Java code by calling a reasoner. Please note that this page describes OWL version 2, which can be processed only by tools designed for ...
or /usr/local/java/j2sdk5.0. <br> (2) Download and Install the Tomcat Binary Distribution <br>NOTE: As an alternative to downloading a binary distribution, you can create your own from the...
compiler from the JDK to compile JSPs, or any other Java compiler supported by Apache Ant. ============== API Stability: ============== The public interfaces for the following classes are fixed and ...