码迷,mamicode.com
首页 >  
搜索关键字:spring in action    ( 61021个结果
java日志框架与日志系统
日志框架:提供日志调用的接口,实际的日志输出委托给日志系统实现。JCL(Jakarta Commons Logging):比较流行的日志框架,很多框架都依赖JCL,例如Spring等。SLF4j:提供新的API,初衷是配合Logback使用,但同时兼容Log4j。日志系统:负责输出日志Log4j:较...
分类:编程语言   时间:2014-05-18 19:29:59    阅读次数:370
Struts2 拦截器
编写一个拦截ScheduleAction的拦截器package com.manager.interceptor;import java.util.Date;import com.manager.action.ScheduleAction;import com.opensymphony.xwork2....
分类:其他好文   时间:2014-05-18 19:00:32    阅读次数:260
html的两种提交按钮submit和button
转自:http://baiying.blog.51cto.com/1068039/1319784html按钮有两种:和登录这两种在页面上看起来好像一样没什么区别,但是这两种是有区别的。1,如果在/hdlogin/login.action" method="post">标签中,使用,要想提交form,...
分类:Web程序   时间:2014-05-18 18:58:22    阅读次数:394
Spring零配置
@Component :标注一个普通的Spring Bean类。@Controller: 标注一个控制器组件类。@Service:标注一个业务逻辑组件类。@Repository:标注一个DAO组件类。首先要使用注解需要配置Spring自动扫描的包 将ScheduleDaoImp类注入在Spring....
分类:编程语言   时间:2014-05-18 02:24:39    阅读次数:367
SSH三大框架注解整合(二)
5.使用spring注解注入service,DAOaction:@ParentPackage(value = "struts-default")@Namespace("/")@Controller@Scope("prototype")public class BookAction extends A...
分类:其他好文   时间:2014-05-17 20:52:45    阅读次数:218
Spring整合Hibernate
Spring版本:3.2.0Hibernate版本:3.6.0applicationContext配置文件: com.mysql.jdbc.Driver jdbc:mysql://localh...
分类:编程语言   时间:2014-05-17 20:39:17    阅读次数:411
更有效的批处理(cheaper in bulk)
mget允许我们一次检索多个document,而bulk API则允许我们在一个请求中做create,index,update 或者delete。如果你要index一个数据流如日志数据,bulk是很实用的,bulk可以能排队数百或数千的批次处理。bulk的请求体有点不同寻常,如下:{ action:...
分类:其他好文   时间:2014-05-17 19:24:37    阅读次数:313
Android 使用系统的Activity播放音频文件 intent
Intent intent = new Intent(); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction(Intent.ACTION_VIEW); inten...
分类:移动开发   时间:2014-05-17 19:03:17    阅读次数:257
给Hyper-V创建两块网卡备用
描述 给Hyper-V创建两块网卡备用 步骤: 1 打开Hyper-V,在右侧Action栏,单击Virtual Switch Manager… 2 依次选择New Virtual network switch | Internal | Create Virtual Switch 3 指定Name为...
分类:其他好文   时间:2014-05-17 18:26:05    阅读次数:299
Eclipse RCP 玩转 Spring
近来上一个项目想在Eclipse RCP中使用Spring,在网上Google了一下发现这方面的材料比较少,晓得Spring自个有个Spring-OSGI的项目,能够在Spring中装备OSGI效劳。但是,我仅仅想在RCP中引进Spring来管理Java Bean,不想去研讨那个东西。所以,看看有没...
分类:编程语言   时间:2014-05-17 18:15:05    阅读次数:450
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!