Spring3 jar包说明
摘要:Spring版本:3.2.2.RELEASEspring-aop.jarSpring的面向切面编程,提供AOP(面向切面编程)实现spring-core,spring 3.1 jar, (spring-beans,spring 3.1 jar,AOP Alliance,spring.jar, CGLIB,Commons Attributes)。spring-aspects.jarSpring提供对AspectJ框架的整合spring-beans.jarSpringIoC(依赖注入)的基础实现spring-core,spring 3.1 jar,(CGLIB)。spring-context.ja
阅读全文
posted @
2013-04-15 16:18
nami
阅读(324)
推荐(0)
Spring3简介
摘要:Spring框架简介Spring框架的特性被组织到大约20个模块中,这些模块又被分组到核心容器,数据访问/集成、网络、AOP(面向方面编程)、Instrumentation(监测器)和测试几个部分。见下图核心容器(Core Container) 包括Core、Beans、Context、EL模块。1:Core和Beans模块提供了Spring最基础的功能,提供IoC和依赖注入特性。这里的基础概念是BeanFactory,它提供对Factory模式的经典实现来消除对程序性单例模式的需要,并真正地允许你从程序逻辑中分离出依赖关系和配置。2:Context模块基于Core和Beans来构建,它提供了
阅读全文
posted @
2013-04-15 15:00
nami
阅读(411)
推荐(0)
Java开发常用地址
摘要:jre:http://www.java.com/zh_CN/download/manual.jspjdk:http://www.oracle.com/technetwork/java/javase/downloads/index.htmlspring:http://www.springsource.org/download/communitystruts:http://struts.apache.org/download.cgitomcat:http://tomcat.apache.org/download-70.cgieclipse:http://www.eclipse.org/downlo
阅读全文
posted @
2013-04-11 16:01
nami
阅读(184)
推荐(0)
struts2 入门
摘要:下载struts2:http://struts.apache.org/2.x/搭建struts2项目1.导入struts2所需jar包(struts2 jar包说明)2.编辑Web应用的web.xml配置文件,配置Struts 2的核心Filter。View Code <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-cl
阅读全文
posted @
2013-04-11 15:56
nami
阅读(180)
推荐(0)
Java配置环境变量
摘要:系统:Windows 7jdk1.7(下载:http://www.oracle.com/technetwork/java/javase/downloads/index.html)1.打开环境变量配置对话框:右击【计算机】- 属性 - 高级系统设置,打开【系统属性】对话框;选择【高级】选项卡,点击【环...
阅读全文
posted @
2013-04-11 15:51
nami
阅读(550)
推荐(0)
struts2 jar包说明
摘要:版本:struts-2.3.12灰色部分为必须加入的核心包。以前的版本commons-logging也是必须要加入的,不过试了一下2.3.12版本不加入commons-logging.jar也可以启动。但是一般项目记录日志是必须的,所以一般commons-logging.jar也会加入。xwork-core-2.3.12.jarwebwork的核心库struts2-core-2.3.12.jarstruts2 2.0.11.2的核心库freemarker-2.3.19.jar表现层框架,定义了struts2的可视组件主题ognl-3.0.6.jar对象图导航语言(Object Graph Na
阅读全文
posted @
2013-04-10 14:38
nami
阅读(625)
推荐(0)
JavaScript 中Date对象的构造函数
摘要:构造函数new Date()new Date(milliseconds)new Date(datestring)new Date(year, month, day, hours, minutes, seconds, ms)其中有三个很容易理解,这里不赘述。只有new Date(datestring)让人很费解,Date对象到底支持什么样的datestring?Google了一番,找到如下解释:datestring 一个字符串,声明了日期,也可以同时声明时间。这个字符串的格式应该是方法Date.parse()能接受的。Date.parse(date) 参数:date 含有要解析的日期和时间的..
阅读全文
posted @
2013-04-03 11:16
nami
阅读(769)
推荐(1)