发布时间:2015-04-23 11:46:58
As an example, let's assume the following two tables, which we'll call tableAand tableB.id name id title-- ---- -- ----1 Kenny 1 Analyst1 Rob 2 Sales4 Molly 3 Manager1 Greg2 JohnIf we wanted to get everyone that's an Analyst, we could do th.........【阅读全文】
发布时间:2015-04-21 16:54:07
http://blog.csdn.net/lovejavaydj/article/details/7635848试验方法: 写一个单元测试,调用一个service层方法(发生对数据库进行写操作的方法--insert、update、delete)即可. 试验过程: .........【阅读全文】
发布时间:2015-04-21 16:09:52
先说一下我的目录结构1、maven项目;2、spring applicationContext.xml放在resources目录下3、transactionManager datasource定义在applicationContext.xml中,在web.xml中org.springframework.web.context.ContextLoaderListener加载4、spring-mvc-servlet.xml中只定义了与web controller,json转换的bean;.........【阅读全文】
发布时间:2015-03-18 18:51:22
mWebView.setBackgroundColor(0); // 设置背景色 mWebView.getBackground().setAlpha(0); // 设置填充透明度 范围:0-255 两个设置了才有效果。在android:background设置无效,如果背景被html元素的css影响,请修改css.........【阅读全文】
发布时间:2015-03-05 16:06:55
Spring定时任务的几种实现http://gong1208.iteye.com/blog/1773177近日项目开发中需要执行一些定时任务,比如需要在每天凌晨时候,分析一次前一天的日志信息,借此机会整理了一下定时任务的几种实现方式,由于项目采用spring框架,所以我都将结合spring框架来介绍。一.分类从实现的技术上来分类.........【阅读全文】