java使用JUnit出現java.lang.NullPointerException
今天按照視訊,通過zookeeper來實現伺服器的連線與上線,然後因為沒有定義main方法,所以想通過JUnit來測試一些連線zookeeper伺服器的方法,然後就一直出現返回空指標的錯誤。
程式碼:
package cn.itcast.bigdata.zk;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.WatchedEvent;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.ZooDefs.Ids;
import com.sun.org.apache.bcel.internal.generic.NEW;
import com.sun.org.apache.xml.internal.security.Init;
import org.apache.zookeeper.ZooKeeper;
import org.apache.zookeeper.client.ZooKeeperSaslClient;
import org.apache.zookeeper.data.Stat;
import org.junit.Before;
import org.junit.Test;
import javafx.scene.chart.PieChart.Data;
public class SimpleClientZk {
private static final String connectString = "shizhan01:2181,shizhan02:2181,shizhan03:2181";
private static final int sessionTimeout = 2000;
ZooKeeper ZkClient = null;
public void init() throws Exception {
ZkClient = new ZooKeeper(connectString, sessionTimeout, new Watcher() {
@Override
public void process(WatchedEvent event) {
// TODO Auto-generated method stub
//收到事件通知後的回撥函式(我們自己的事件處理邏輯) getType():事件型別
System.out.println(event.getType() + "------------" + event.getPath());
try {
ZkClient.getChildren("/", true);
} catch (Exception e) {
}
}
});
}
//建立資料節點到zk中
@Test
public void nodeCreate() throws Exception, InterruptedException {
String nodeCreate = ZkClient.create("/eclips", "hello".getBytes(), Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
}
//獲取子節點
@Test
public void getChildren() throws Exception {
List childrennode = ZkClient.getChildren("/", true);
for(String child : childrennode ) {
System.out.println(child);
}
Thread.sleep(Long.MAX_VALUE);
}
//判斷節點是否存在
@Test
public void testExist() throws Exception {
Stat stat = ZkClient.exists("/eclips", false);
System.out.println(stat == null ? "not exists":"znode exists");
}
//獲取節點資料
@Test
public void getData() throws Exception, InterruptedException {
byte[] data = ZkClient.getData("/eclips", false, null);
System.out.println(new String(data));
}
//刪除節點
@Test
public void deleteNode() throws Exception, KeeperException {
ZkClient.delete("/eclips", -1);
}
//修改節點
@Test
public void setNodeData() throws Exception, InterruptedException {
ZkClient.setData("/app1", "setdata".getBytes(), -1);
byte[] data = ZkClient.getData("/app1", false, null);
System.out.println(new String(data));
}
}
通過百度查閱一些資料後,終於發現問題所在,因為我的程式碼中所使用的物件是在我自己寫的一個初始化方法init()中對其進行初始化的,而用JUnit測試方法時,方法中的物件都是獨立存在的,所以會一直出現返回空指標的錯誤。
解決方法:在你的初始化方法init()的開頭加一個@Before,用來初始化測試單元中的外部需求,完美解決。
@Before
public void init() throws Exception {
ZkClient = new ZooKeeper(connectString, sessionTimeout, new Watcher() {
@Override
public void process(WatchedEvent event) {
// TODO Auto-generated method stub
//收到事件通知後的回撥函式(我們自己的事件處理邏輯) getType():事件型別
System.out.println(event.getType() + "------------" + event.getPath());
try {
ZkClient.getChildren("/", true);
} catch (Exception e) {
}
}
});
}
相關文章
- dbca java.lang.NullPointerException解決方法JavaNullException
- jdbc.properties報錯:java.lang.NullPointerExceptionJDBCJavaNullException
- 在IDEA下使用JUnit出現的問題與解決辦法Idea
- Java中的空指標異常 java.lang.NullPointerExceptionJava指標NullException
- JUnit最佳實現
- junit 使用JUnit測試預期異常
- 解決JUnit單元測試時出現的Java.lang.Exception: No runnable methods問題JavaException
- JUnit使用總結
- JUnit —— TestSuite 的使用UI
- JUnit使用經驗
- junit測試出現的小問題解決方案
- java.lang.NullPointerException 空指標異常問題JavaNullException指標
- 使用Junit 5時,如何同時使用 junit4和 PowerMockMock
- 使用Java JUnit框架裡的@Rule註解的用法舉例Java框架
- Java單元測試之junitJava
- java+junit+selenium+EclipseJavaEclipse
- 使用android studio 建立app時報錯:Could not download junit.jar(junit:junit:4.12)AndroidAPPJAR
- 使用Java JUnit框架裡的@SuiteClasses註解管理測試用例Java框架UI
- Appcrawler 執行報錯 Exception in thread "main" java.lang.NullPointerExceptionAPPExceptionthreadAIJavaNull
- Android開發中遇到Java.lang.NullPointerException解決辦法AndroidJavaNullException
- 1.13-java單元測試junitJava
- junit
- java.lang.NullPointerException: Attempt to invoke virtual method 'int android.content.Intent.getI...JavaNullExceptionAndroidIntent
- 使用JUnit進行單元測試
- 使用junit單元測試SpringMvcSpringMVC
- Junit 單元測試使用總結
- Java JUnit框架裡@Category註解的工作原理Java框架Go
- Java單元測試之JUnit 5快速上手Java
- Java Junit單元測試(入門必看篇)Java
- Eclipse快速上手指南之使用JUnitEclipse
- Spring Test 整合 JUnit 4 使用總結Spring
- junit單元測試時,java.lang.ClassNotFoundException: java.pakc.SimpleTestJavaException
- junit 4
- Eclipse下報錯 An internal error occurred during: "C/C++ Indexer". java.lang.NullPointerExceptionEclipseErrorC++IndexJavaNullException
- JUnit3.8的Junit單元測試.
- 安卓單元測試 (八):Junit Rule 的使用安卓
- Android單元測試(3):JUnit 的使用Android
- 實踐作業二—個人專案—Junit使用