1 spring l AOP :切面编程 切面:切入点 和 通知 结合 l spring aop 编程 <aop:config> 方法1: <aop:pointcut expression="切入点表达式" id=""> <aop:advisor advice-ref="通知引用" pointcut ...
分类:
编程语言 时间:
2017-07-29 10:10:53
阅读次数:
178
准备工作 1、创建Java的Maven项目 创建好的目录结构如下: 另外注意junit的版本,最好不要太高,最开始笔者使用的junit4.12的,发现运行的时候会报错。最后把Junit的版本改成4.7的之后,问题解决了。 创建测试工具类HbaseDemo,为了保证能够让Hbase运行,需要最开始写出 ...
分类:
数据库 时间:
2017-07-18 00:14:11
阅读次数:
367
junit4.9测试用例 测试基类 [javascript] view plain copy import org.junit.runner.RunWith; import org.springframework.test.context.ContextConfiguration; import o ...
分类:
编程语言 时间:
2017-07-14 13:23:51
阅读次数:
153
public class Calculator { public int result = 0; public int add(int operandl, int operand2) { result = operandl + operand2; return result; } public in ...
分类:
其他好文 时间:
2017-07-12 01:07:13
阅读次数:
127
今天重新写了次Spring的测试,经过一番努力,还是成功的运行了的。下面记录下写作过程以及修改历程。 首先,自己的项目有些不完整,所以中间有许多很小的bug,也在此记录下过程: 由于自己重新生成的mybaits文件没有及时更新到项目里,所以在一开始的时候,解决这些小问题 其次,自己没有正确处理手机号 ...
分类:
编程语言 时间:
2017-07-09 10:55:09
阅读次数:
141
话不多少说,直接上代码 package ASSERTTEST; import org.junit.Assert; import org.hamcrest.*;import org.junit.Test;import static org.junit.Assert.*; import java.uti ...
分类:
其他好文 时间:
2017-07-03 22:31:19
阅读次数:
156
学了非常久的spring+mybatis+struts.一直都是单个的用他们,或者是两两组合用过,今天总算整合到一起了,配置起来有点麻烦。可是配置完一次之后。就轻松多了,那么框架整合配置具体解释例如以下。 1、导入对应的jar包 由于我们建造的是maven的web项目,全部我们在pom.xml中须要 ...
分类:
编程语言 时间:
2017-06-27 22:15:26
阅读次数:
178
一般情况下: [html] view plain copy @ContextConfiguration(Locations="../applicationContext.xml") [html] view plain copy [html] view plain copy 多个文件时,可用{} [h ...
分类:
编程语言 时间:
2017-06-18 20:51:40
阅读次数:
187
@Service @ContextConfiguration(locations = { "classpath:config/applicationContext.xml" }) @RunWith(SpringJUnit4ClassRunner.class) @TransactionConfigur... ...
分类:
编程语言 时间:
2017-06-13 14:13:45
阅读次数:
202
eclipse是客户端开发工具,本来就不带有j2ee的jar包,需要容器:比如tomcat来提供这个jar的。j2EE通用jar包列表:IKIKAnalyzer3.2.8.jar // 分词器ant-junit4.jar // ant junitantlr-2.7.6.jar // 没有此包,hib ...
分类:
系统相关 时间:
2017-06-08 01:18:17
阅读次数:
268