摘要: tiles framework 详解tiles framework 详解就是一个页面模版引擎。可以渲染页面,属于视图层。下面给你拷贝一份详细的tiles介绍,你可以初步了解一下。Tiles框架特性和内容Tiles框架为创建Web页面提供了一种模板机制,它能将网页的布局和内容分离。它允许先创建模板,然 阅读全文
posted @ 2016-02-25 08:11 ziranxixi 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 程序最终都将在内存中执行,变量只有在内存中占有一席之地时才能被访问。 类的静态成员(变量和方法)属于类本身,在类加载的时候就会分配内存,可以通过类名直接去访问;非静态成员(变量和方法)属于类的对象,所以只有在类的对象产生(创建类的实例)时才会分配内存,然后通过类的对象(实例)去访问。 在一个类的静态 阅读全文
posted @ 2016-02-25 08:07 ziranxixi 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 以前以为Filter只是一个特殊点的Servlet,用进只需在web.xml中配置一下拦截路径就可以了,可经过这两天的深入学习,才知道以前对Filter类的了解和使用都太过浅薄了。 在网上看了很多篇相关的技术文章,现提取它们中的精髓(我认为能说明问题的东西)及我个人的一些学习经验作如下总结,希望能帮 阅读全文
posted @ 2016-02-25 07:59 ziranxixi 阅读(512) 评论(0) 推荐(0) 编辑
摘要: Thread.sleep() The current thread changes state from Running to Waiting/Blocked as shown in the diagram below. Any other thread with reference to the 阅读全文
posted @ 2016-02-25 07:49 ziranxixi 阅读(247) 评论(0) 推荐(0) 编辑
摘要: Thread.sleep() The current thread changes state from Running to Waiting/Blocked as shown in the diagram below. Any other thread with reference to the 阅读全文
posted @ 2016-02-25 07:48 ziranxixi 阅读(175) 评论(0) 推荐(0) 编辑