提交 bee49162 编写于 作者: Z zyyang

change

上级 a000e6d3
...@@ -27,6 +27,15 @@ public class MultiThreadsWithSameStatmentTest { ...@@ -27,6 +27,15 @@ public class MultiThreadsWithSameStatmentTest {
e.printStackTrace(); e.printStackTrace();
} }
} }
public void release(){
try {
stmt.close();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
} }
@Before @Before
...@@ -46,8 +55,8 @@ public class MultiThreadsWithSameStatmentTest { ...@@ -46,8 +55,8 @@ public class MultiThreadsWithSameStatmentTest {
} }
System.out.println(); System.out.println();
} }
resultSet.close(); resultSet.close();
service.release();
} catch (SQLException e) { } catch (SQLException e) {
e.printStackTrace(); e.printStackTrace();
} }
...@@ -57,6 +66,7 @@ public class MultiThreadsWithSameStatmentTest { ...@@ -57,6 +66,7 @@ public class MultiThreadsWithSameStatmentTest {
try { try {
Service service = new Service(); Service service = new Service();
service.stmt.executeUpdate("insert into jdbctest.weather values(now,1)"); service.stmt.executeUpdate("insert into jdbctest.weather values(now,1)");
service.release();
} catch (SQLException e) { } catch (SQLException e) {
e.printStackTrace(); e.printStackTrace();
} }
...@@ -76,13 +86,5 @@ public class MultiThreadsWithSameStatmentTest { ...@@ -76,13 +86,5 @@ public class MultiThreadsWithSameStatmentTest {
@After @After
public void after() { public void after() {
try {
if (stmt != null)
stmt.close();
if (conn != null)
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册