您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. commons-pool.jar SSH集成时用到的jar包

  2. 这是在进行struts+spring+hibernate集成时,经常报错少的jar包,Error creating bean with name 'dataSource' defined in class path resource [applicationContext.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: org/apache/commons/pool/
  3. 所属分类:Java

    • 发布日期:2008-09-23
    • 文件大小:36864
    • 提供者:zp8126
  1. struts 标签 chm文档 英文版

  2. struts 标签 英文版 详细介绍了html logic nested 等标签 不过英文版的看起来有点麻烦
  3. 所属分类:Web开发

    • 发布日期:2008-09-24
    • 文件大小:183296
    • 提供者:tobeaj2mer2
  1. 深入理解LINUX内核(影印版)(第3版)

  2. Preface The Audience for This Book Organization of the Material Level of Descr iption Overview of the Book Background Information Conventions in This Book How to Contact Us Safari? Enabled Acknowledgments Chapter 1. Introduction Section 1.1. Linux V
  3. 所属分类:嵌入式

    • 发布日期:2013-09-21
    • 文件大小:7340032
    • 提供者:zslinyuanwz0213
  1. SystemVerilog 3.1a Language Reference Manual

  2. SystemVerilog 3.1a Language Reference Manual Accellera's Extension to Verilog. Table of Contents Section 1 Introduction to SystemVerilog ...................................................................................................... 1 Section
  3. 所属分类:硬件开发

    • 发布日期:2013-09-29
    • 文件大小:4194304
    • 提供者:chsun6861
  1. 多线程、并行与分布式程序设计基础 英文版pdf

  2. 主要内容如题:多线程,并行和分布式所使用的程序设计 Product Descr iption Foundations of Multithreaded, Parallel, and Distributed Programming covers-and then applies-the core concepts and techniques needed for an introductory course in this topic. The book emphasizes the prac
  3. 所属分类:互联网

    • 发布日期:2013-10-19
    • 文件大小:9437184
    • 提供者:kuango
  1. nrf51822 pdf

  2. A low power ARMCortex -M0 32 bit CPU is embedded in all nRF51 series devices. The ARM Cortex -M0 has a 16 bit instruction set with 32 bit extensions (Thumb-2 technology) that delivers high density code with a small memory footprint. By using a singl
  3. 所属分类:硬件开发

    • 发布日期:2013-10-21
    • 文件大小:517120
    • 提供者:zhaokexiao1
  1. java中内部类的分类及用法

  2. 在java语言中,有一种类叫做内部类(inner class),也称为嵌入类(nested class),它是定义在其他类的内部。
  3. 所属分类:Java

    • 发布日期:2013-10-30
    • 文件大小:63488
    • 提供者:u012633030
  1. Spring事务传播特性解析

  2. 通过代码解析spring传播特性,包括 1、Propagation.REQUIRED 方法被调用时自动开启事务,在事务范围内使用则使用同一个事务,否则开启新事务。 2、Propagation.REQUIRES_NEW 无论何时自身都会开启事务 3、Propagation.SUPPORTS 自身不会开启事务,在事务范围内则使用相同事务,否则不使用事务 4、Propagation.NOT_SUPPORTED 自身不会开启事务,在事务范围内使用挂起事务,运行完毕恢复事务 5、Propagation.
  3. 所属分类:Java

    • 发布日期:2013-11-05
    • 文件大小:8388608
    • 提供者:lb85858585
  1. java面试常见问题

  2. java面试常见问题 1Static Nested Class 和 Inner Class的不同,说得越多越好(面试题有的很笼统)
  3. 所属分类:互联网

    • 发布日期:2013-11-05
    • 文件大小:39936
    • 提供者:u012735857
  1. struts1的标签

  2. Struts提供了五个标签库,即:HTML、Bean、Logic、Template和Nested。该文档可以让学者很快学会struts1框架并能使用
  3. 所属分类:Java

    • 发布日期:2013-11-08
    • 文件大小:99328
    • 提供者:u012621360
  1. 海康卫视开发dll文件

  2. #region using System; using System.Diagnostics; using System.IO; using System.Runtime.InteropServices; using System.Text; using System.Threading; using SocketLibrary; #endregion namespace HkwsSDK { /// /// 在海康威视的SDK包上,再进行封装,供简单直接的调用. /// 目前可以控制硬盘录像
  3. 所属分类:C#

    • 发布日期:2013-11-25
    • 文件大小:364544
    • 提供者:jlc_ck
  1. Google C++ 编程规范.pdf

  2. 高清版Google C++ 编程规范的pdf文件,里面带有目录 一、头文件........................................................................................................................................4 1. #define的保护.............................................................
  3. 所属分类:C++

    • 发布日期:2013-12-31
    • 文件大小:528384
    • 提供者:xcsa23
  1. Google C++ 编程规范

  2. 目录 一、头文件........................................................................................................................................4 1. #define的保护..........................................................................................
  3. 所属分类:C++

    • 发布日期:2013-12-31
    • 文件大小:528384
    • 提供者:xcsa23
  1. sqlitejdbc-v037-nested.jar

  2. java操作Sqlite数据库的第三方jar包
  3. 所属分类:Java

    • 发布日期:2014-02-07
    • 文件大小:877568
    • 提供者:yjun2012
  1. Java就业面试题大全<史上最权威发布>

  2. 9、abstract的method是否可同时是static,是否可同时是native,是否可同时是synchronized? abstract的method 不可以是static的,因为抽象的方法是要被子类实现的,而static与子类扯不上关系! native方法表示该方法要用另外一种依赖平台的编程语言实现的,不存在着被子类实现的问题,所以,它也不能是抽象的,不能与abstract混用。例如,FileOutputSteam类要硬件打交道,底层的实现用的是操作系统相关的api实现,例如,在win
  3. 所属分类:Java

    • 发布日期:2014-02-09
    • 文件大小:804864
    • 提供者:u013616976
  1. PCR技术应用于微生物进展

  2. The PCR technology is wildly used in experiments of molecular biology.It has dramatically advanced molecular studies and developed an array of concerned appilications. So far, there are all kinds of PCRs, such as error-prone PCR, over-lap extension
  3. 所属分类:教育

    • 发布日期:2014-02-18
    • 文件大小:457728
    • 提供者:u013690542
  1. RComponent.RTDesign

  2. RComponent.RTDesign RComponent.RTDesign 是RComponent为.NET开发人员提供的网络组件,100%.NET实现。 提供完整的API,帮助文档。丰富的Demo和Demo源码。提供免费技术支持。 1.RTDDesign 提供在运行时建立控件和调整控件,容器尺寸. RTDDesign支持在在运行时用鼠标或键盘移动对象,修改控件属性 2.丰富的编辑功能. 同时选中一个或多个控件,相关对象的对齐, 可对齐到网格,前后层次的调整, 3.支持用户定义的属性, 有
  3. 所属分类:C#

    • 发布日期:2007-03-08
    • 文件大小:1048576
    • 提供者:trove
  1. 用户注册和登录是每个系统的必须存在的一部分,基于Dwr+Struts2+Spring+Hibernate写了一个用户登录注册系统

  2. 用户注册和登录是每个系统的必须存在的一部分,基于Dwr+Struts2+Spring+Hibernate写了一个用户登录注册系统。   其中用Dwr去进行用户注册的用户是否存在的验证。   全部业务控制交由Spring去进行处理。事务处理也交由Spring去管理。   压缩文件中不包含Jar文件(由于全部的Jar将近12M,不能全部上传),所用到的Jar目录为,工程中再也不会出现由于MyEclipse自动整合而出现的大量Jar文件 : Java代码 1. //如果不用,启动时不会出错,但使用D
  3. 所属分类:Java

    • 发布日期:2008-10-08
    • 文件大小:37888
    • 提供者:eyue123
  1. Struts标签库查询手册.

  2. Struts标签库查询手册,解压后为 Struts标签库查询手册.ch,有:BEAN, HTML, LOGIC, NESTED
  3. 所属分类:Java

    • 发布日期:2008-10-10
    • 文件大小:144384
    • 提供者:lalalove_yaya
  1. ScalaByExample.pdf

  2. 1 Introduction 1 2 A First Example 3 3 Programming with Actors and Messages 7 4 Expressions and Simple Functions 11 4.1 Expressions And Simple Functions . . . . . . . . . . . . . . . . . . . . . . 11 4.2 Parameters . . . . . . . . . . . . . . . . .
  3. 所属分类:其它

    • 发布日期:2014-05-14
    • 文件大小:887808
    • 提供者:qq_15143025
« 1 2 ... 10 11 12 13 14 1516 17 18 19 20 ... 34 »