E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
driven
cron表达式
<task:annotation-
driven
/> <!
pengfeifei26
·
2014-09-15 14:00
cron
Node.js非阻塞IO和事件循环学习总结
Node.js已经有两个月,使用express结合mongoose写了一个web应用和一套RESTfulwebapi,回过头来看Node.js官网首页对Node.js的介绍:Node.jsusesanevent-
driven
LeoG0816
·
2014-09-14 22:00
node.js
spring的annotation-
driven
配置事务管理器详解
<tx:annotation-
driven
transactio
y60024651
·
2014-09-12 09:00
spring
基于jasmine:初学TDD
1.什么是TDD:TDD测试驱动开发(Test-
driven
development)是极限编程中倡导的程序开发方法,以其倡导 先写测试程序,然后编码实现其功能得名
tiantian-yuqing
·
2014-09-10 13:00
TDD
测试
Jasmine
贡献式编程(总结)
之前的几篇文章,目的是介绍一个贡献式编程的思考方式,暂时姑且叫Contribution-
Driven
-Development(CDD)吧。
唐家文
·
2014-09-04 14:02
System
Architecture
插件
扩展
模块化
框架
driven /> 区别
<annotaion-
driven
/>标签: 这个标签对应的实现类是org.springframework.web.servlet.config.AnnotationDrivenBeanDefinitionParser
lf6627926
·
2014-09-02 11:00
annotation
配置xml时一些jar和命名空间问题,如mvc:annotation-
driven
Q1.元素"mvc:annotation-
driven
"的前缀"mvc"未绑定办法:这是我在spring-servlet.xml文件里使用开头的标签时,忘记引入了命名空间。
tonytfjing
·
2014-09-01 14:00
xml
springMVC
schema
jar
bug
SpringMVC源码总结(七)mvc:annotation-
driven
中的HttpMessageConverter
阅读更多这一篇文章主要介绍下HttpMessageConverter整个注册过程包含自定义的HttpMessageConverter,然后对一些HttpMessageConverter进行具体介绍。HttpMessageConverter接口介绍:publicinterfaceHttpMessageConverter{/***Indicateswhetherthegivenclasscanbere
乒乓狂魔
·
2014-08-27 22:00
SpringMVC
SpringMVC源码总结(七)mvc:annotation-
driven
中的HttpMessageConverter
阅读更多这一篇文章主要介绍下HttpMessageConverter整个注册过程包含自定义的HttpMessageConverter,然后对一些HttpMessageConverter进行具体介绍。HttpMessageConverter接口介绍:publicinterfaceHttpMessageConverter{/***Indicateswhetherthegivenclasscanbere
乒乓狂魔
·
2014-08-27 22:00
SpringMVC
SpringMVC源码总结(七)mvc:annotation-
driven
中的HttpMessageConverter
这一篇文章主要介绍下HttpMessageConverter整个注册过程包含自定义的HttpMessageConverter,然后对一些HttpMessageConverter进行具体介绍。 HttpMessageConverter接口介绍: public interface HttpMessageConverter<T> { /** * Indicate
乒乓狂魔
·
2014-08-27 22:00
springMVC
'mvc:annotation-
driven
' must have no character or element问题
使用SpringMVC,启动tomcat报这个错误解决办法首先将Spring版本提升到3.1及以上如果还不行替换xml文件头部:
thc1987
·
2014-08-26 11:00
使用@Controller注解为什么要配置
driven />
点击链接加入群【JavaEE(SSH+IntelliJIDE+Maven)】:http://jq.qq.com/?_wv=1027&k=L2rbHv为了解决静态资源访问的问题,servlet改成了拦截所有请求,即/,并添加了默认的servlet,这时候*.do请求不能被控制器捕捉了,页面错误为404。直到添加了之后,.do请求才又能被正确捕捉和处理。代码如下mvc-servlet.xmlJava代
executor
·
2014-08-26 08:00
SpringMVC源码总结(六)mvc:annotation-
driven
中的HandlerMethodReturnValueHandler
经过了两篇的乱码说明,要重新回到mvc:annotation-
driven
标签中,继续说说HandlerMethodReturnValueHandler的使用,下一篇文章主要说说HttpMessageConverter
乒乓狂魔
·
2014-08-26 06:00
springMVC
Karam与TDD
一.TDD 测试驱动开发(Test-
Driven
Development,TDD)是一种敏捷(AGILE)开发方法论,它把开发流程倒转了过来,在进行代码实现之前
bijian1013
·
2014-08-25 21:00
Karam
TDD
Karam与TDD
一.TDD 测试驱动开发(Test-
Driven
Development,TDD)是一种敏捷(AGILE)开发方法论,它把开发流程倒转了过来,在进行代码实现之前
bijian1013
·
2014-08-25 21:00
Karam
TDD
Spring3多数据源的Transactional事务注解
Spring3支持多数据源的@Transactional事务注解1、配置事务注解驱动、每个数据源对应的事务管理器,并定义“限定符” <tx:annotation-
driven
liyonghui160com
·
2014-08-25 17:00
spring事务无法生效问题
aop的方式 <context:annotation-config /> <tx:annotation-
driven
海绵88
·
2014-08-19 15:00
spring事务
SpringMVC源码总结(三)mvc:annotation-
driven
和mvc:message-converters简单介绍
上一篇文章讲述了最简单的mvc:annotation-
driven
,这次就要说说@ResponseBody注解,很明显这个注解就是将方法的返回值作为reponse的body部分。
乒乓狂魔
·
2014-08-19 06:00
springMVC
测试驱动开发TDD(Test
Driven
Development)和jasmine
测试驱动开发是一个循环过程。这个循环主要由三个部分组成,三个步骤:Red->Green->Refactor->Red->Green->Refactor……(即:失败->通过->重构->失败->通过->重构->……) 他的具体过程是: 1.我们在写代码之前,先根据
pollyanna
·
2014-08-17 17:00
test
SpringMVC源码总结(二)mvc:annotation-
driven
以及@Controller和@RequestMapping的那些事
上一篇文章让我们了解HandlerMapping和HandlerAdapter以及默认采取的策略,这篇文章就要讲述mvc:annotation-
driven
对默认策略的改变。
乒乓狂魔
·
2014-08-16 22:00
springMVC
@RequestMapping
为什么需要Page Object?
PO的主要价值体现在对界面交互细节的封装,这样可以使测试案例可以更关注与业务而非界面细节,提高测试案例的可读性,这其实都很有利Behavior
Driven
Development(BDD),Acceptance
xiesongsong
·
2014-08-11 14:48
object
价值
信息
姓名
证号
开发方法
介绍3中开发方法:Scrum, Feature-
Driven
Development(FDD), Learn Development, Crystal Methods Scrum:由Ken Schwaber
gaylord
·
2014-08-06 14:00
方法
使用@Controller注解为什么要配置
driven />
自己看了官方文档,也到网上查了下,目前理解如下:相当于注册了DefaultAnnotationHandlerMapping和AnnotationMethodHandlerAdapter两个bean,配置一些messageconverter。即解决了@Controller注解的使用前提配置。是对包进行扫描,实现注释驱动Bean定义,同时将bean自动注入容器中使用。即解决了@Controller标识
mxdxm
·
2014-08-03 08:00
@Controller
测试驱动开发
测试驱动开发(Test-
Driven
Development)是一种不同于传统软件开发流程的新型开发方法,它将具体实现的功能进行模块划分,实现不同模块之间的零交集,并且各个模块实现的功能先编写测试代码,
a904143034
·
2014-08-02 11:00
测试驱动开发
测试描述
功能实现
测试驱动开发
TDD是Test
Driven
Development的简称,即为测试驱动开发,是极限编程中倡导的开发方法,倡导先写测试再写功能。 这里主要以我做的一个练习测试随机四位数的例子来讲讲。
moneyinto
·
2014-07-27 12:00
TDD
测试驱动开发
Jasmine
随机数的产生
Mac OSX Lion上安装Node环境
Node.jsNode.jsisaplatformbuiltonChrome’sJavaScriptruntimeforeasilybuildingfast,scalablenetworkapplications.Node.jsusesanevent-
driven
zhengjie19
·
2014-07-24 12:00
Bug驱动开发(Bug-
driven
development)
说实话,作为一个Domino开发人员,像测试驱动开发(Test-drivendevelopment)、功能驱动开发(Feature-drivendevelopment)之类软件开发的高大上的方法论(Methodology),只是偶尔在用其他语言开发的文章和程序员那里看到和听到过,Domino独特的体系架构使得这些方法论都不太适用。不过根据我最近参与的某国外大型Java产品的经验(也在聊天中得到了朋
starrow
·
2014-07-21 15:40
编程与IT
Bug驱动开发(Bug-
driven
development)
说实话,作为一个Domino开发人员,像测试驱动开发(Test-drivendevelopment)、功能驱动开发(Feature-drivendevelopment)之类软件开发的高大上的方法论(Methodology),只是偶尔在用其他语言开发的文章和程序员那里看到和听到过,Domino独特的体系架构使得这些方法论都不太适用。不过根据我最近参与的某国外大型Java产品的经验(也在聊天中得到了朋
starrow
·
2014-07-21 15:00
bug
方法论
Libuv 基础
libuv采用了 异步 (asynchronous), 事件驱动 (event-
driven
)的编程风格,其主要任务是为开人员提供了一套事件循环和基于I/O(或其他活动)通知的回调函数,libuv提供了一套核心的工具集
u013805103
·
2014-07-21 14:00
CRC32算法详细推导(2)
From: http://blog.csdn.net/sparkliang/article/details/5671977CRC算法详解(2)初见 Table-
Driven
变换到上面的方法后,我们离
JoeBlackzqq
·
2014-07-17 17:00
yii源码一 -- CComponent
base/CComponent.php overview:This file contains the foundation classes for component-based and event-
driven
·
2014-07-16 14:00
component
Spring MVC 4.X ResponseBody 日期类型Json 处理
方法一:全局处理 <mvc:annotation-
driven
> <!
TRAMP_ZZY
·
2014-07-10 13:00
spring jackson
Spring MVC 4.X ResponseBody 日期类型Json 处理
方法一:全局处理 <mvc:annotation-
driven
> <!
TRAMP_ZZY
·
2014-07-10 13:00
spring jackson
recursive react of event
driven
actor
package p20140710 import scala.actors.Actor import scala.actors.Actor._ /** * Created by Rongsheng.Liu on 14-7-10. */ object Main extends App { val numActors = 10; var lst = List.empty[Actor]
dingohaha60
·
2014-07-10 11:00
react
concurrency
actor
event
of
recursive
driven
linux sudoers - sudo权限配置
The policy is
driven
by the /etc/sudoers file or, optionally in LDAP. /etc/sudoers 用来配置管理用
飞奔的熊猫
·
2014-07-08 17:00
linux
sudo
sudoers
tty
driven />意义
是一种简写形式,完全可以手动配置替代这种简写形式,简写形式可以让初学都快速应用默认配置方案。会自动注册DefaultAnnotationHandlerMapping与AnnotationMethodHandlerAdapter两个bean,是springMVC为@Controllers分发请求所必须的。并提供了:数据绑定支持,@NumberFormatannotation支持,@DateTimeF
czplplp_900725
·
2014-07-07 13:00
spring的annotation-
driven
配置事务管理器详解 (
阅读更多假定spring容器中定义了两个事务管理器:transactionManagerX,transactionManagerY,分管两个数据源datasourceX和datasourceY.(spring容器中的定义顺序如上)有如下应用代码:publicinterfaceTestEntityService{publicvoidmethodX();publicvoidmethodY();}接口实
fengbin2005
·
2014-06-29 15:00
spring事务
spring的annotation-
driven
配置事务管理器详解 (
<tx:annotation-
driven
transaction-manager="transactionManagerX" /> &l
fengbin2005
·
2014-06-29 15:00
spring事务
spring的annotation-
driven
配置事务管理器详解 (
阅读更多假定spring容器中定义了两个事务管理器:transactionManagerX,transactionManagerY,分管两个数据源datasourceX和datasourceY.(spring容器中的定义顺序如上)有如下应用代码:publicinterfaceTestEntityService{publicvoidmethodX();publicvoidmethodY();}接口实
fengbin2005
·
2014-06-29 15:00
spring事务
Node.js 101(1): create a package
Node.jsisaplatformbuiltonChrome’sJavaScriptruntimeforeasilybuildingfast,scalablenetworkapplications.Node.jsusesanevent-
driven
cengjingcanghai123
·
2014-06-25 00:00
node.js
Node.js - a new platform for web development
It's event
driven
and employs call back method to achieve non
jXee
·
2014-06-18 05:00
node.js
[ZZ]风险驱动的测试
http://googletesting.blogspot.com/2014/05/testing-on-toilet-risk-
driven
-testing.html Testing on the Toilet
·
2014-06-17 23:00
测试
转:一次领域驱动设计(DDD)的实际应用
原文 url:http://www.davenkin.me/post/2014-02-19/domain-
driven
-design-example 一次领域驱动设计(DDD)的实际应用 笔者先前参与了一个有关汽车信息的网站开发
huangyunbin
·
2014-06-10 11:00
设计
事件驱动模式和reactor模式的区别
事件驱动模式和reactor模式的区别http://stackoverflow.com/questions/9138294/what-is-the-difference-between-event-
driven
-model-and-reactor-pattern
cyper
·
2014-06-10 00:00
java
nio
Reactor
event
driven
的一些概念
1. event :Something that happens during your application that requires a response. 2.event object:The concrete representation of an event in wxPython including data attributes that encapsul
·
2014-06-09 16:00
event
Optimizer statistics-
driven
direct path read decision for full table scans
Hello all fellow Oracle geeks and technology enthusiasts! Long time no see ;-) In the hacking session about Oracle full table scans and direct path reads I explained how the direct path read decision
czmmiao
·
2014-06-06 16:00
table
TDD测试驱动开发
TDD是Test
Driven
Development的简称,意为测试驱动开发。测试驱动开发是一种软件的开发方法。
zhaomingyuan7
·
2014-06-01 21:00
Web
TDD
测试驱动开发
Table-
driven
Approach
By PeterKankowski, 29Sep2009 4.63 (21 votes) Ratethis:vote1vote2vote3vote4vote5 IntroductionYoucanoftenavoidrepeatingcodebyplacingdistinctpartsofitintoanarray: Collapse | CopyCode//Atextadventuregam
pi9nc
·
2014-05-29 15:00
NODEJS(8)Book Read - Nodejs_InfoQ.pdf
Introduce PlatformNode.js is not JS, it is platform based on V8 C++.Node.js is event
driven
, callback
sillycat
·
2014-05-27 22:00
nodejs
mvc annotation-
driven
新增标签
http://starscream.iteye.com/blog/1098880mvcannotation-
driven
新增标签以下为springmvc3.1中annotation-
driven
所支持的全部配置
ljhabc1982
·
2014-05-26 09:01
上一页
28
29
30
31
32
33
34
35
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他