该错误在入门例子中使用mvn clean test时出现该错误。原因:
测试用例应该放在src/test/java/...路径下,我是放在了src/main/java/..路径下了。 因为没有遵守其规则,才出现了该问题。
分类:
其他好文 时间:
2014-07-22 23:00:13
阅读次数:
5348
原pom.xml配置文件: 4.0.0 com.my.helloworld hello-world
1.0-SNAPSHOT Maven Hello World Project junit jun...
分类:
其他好文 时间:
2014-07-22 22:59:36
阅读次数:
374
package 动态连接数据库;import
java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;import
java.lang.reflect.Proxy;import java.sql.Connection;i...
分类:
数据库 时间:
2014-05-01 22:30:11
阅读次数:
536
//UI界面的布局 文件 package
com.example.saveuserandpasswor; import android.app.Activity; import
android.content.Sh...
分类:
移动开发 时间:
2014-05-01 19:55:30
阅读次数:
510
1、环境: Maven :3.1.1 开发工具:Spring Tool Suite 数据库 :
Mysql 5.62、项目文件结构文件代码:2.1 、pom.xml 4.0.0 hibernate hibernate 0.0.1-SNAPSHOT jar
hibe...
分类:
系统相关 时间:
2014-05-01 19:43:40
阅读次数:
695
线程1循环3次,线程2循环6次,线程3循环9次,接着又回到线程1循环3次,线程2循环6次,线程3循环9次...如此循环50次 1 package ch03; 2
3 import java.util.concurrent.locks.Condition; 4 import java.uti...
分类:
编程语言 时间:
2014-05-01 19:25:26
阅读次数:
376
介绍SpringMVC是一款Web MVC框架。 它跟Struts框架类似,是目前主流的Web
MVC框架之一。本文通过实例来介绍SpringMVC的入门知识。实例本文所写的实例是一个员工的CRUD demo。 用idea编写,基于maven,
Web框架使用SpringMVC,视图采取Freema...
分类:
编程语言 时间:
2014-05-01 18:44:43
阅读次数:
370
前文描述的是在SDK下用Ant开发, 本文在此基础上尝试用Maven开发。这里需要用到maven-android-plugin。本文主要参考官方文档: https://code.google.com/p/maven-android-plugin/wiki/GettingStarted首先从这里下载例子工程:https://code.google.com/p/maven-android-plugin...
分类:
移动开发 时间:
2014-04-30 22:31:40
阅读次数:
412
package com.gao;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;...
分类:
编程语言 时间:
2014-04-30 22:16:38
阅读次数:
768
我们可以使java像c语言那样输入输出,printf(); 好神奇~~
首先建立 Print .java放入包gao.com中
package com.gao;
import java.io.*;
public class Print {
// Print with a newline:
public static void print(Object obj) {
...
分类:
编程语言 时间:
2014-04-30 22:13:39
阅读次数:
344