Skip to content

Commit 1417a51

Browse files
committed
bugfix
1 parent efa9114 commit 1417a51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
String insertSql = "insert into t_user (username) values('zhangsan')";
66
PreparedStatement pstmt = conn.prepareStatement(insertSql, Statement.RETURN_GENERATED_KEYS);
77
```
8-
* Step2: Execute insertSql using statement
8+
* Step2: Execute insertSql using statement
99

1010
```java
1111
pstmt.executeUpdate();
@@ -31,6 +31,6 @@ jdbcTemplate.update(new PreparedStatementCreator() {
3131
Assert.assertTrue(keyHolder.getKey().longValue() > 0);
3232
```
3333

34-
##### To run JUnit Test green, config below places:
34+
##### For run JUnit Test a greenbar, config db parameters on below places:
3535
JdbcUtilTest.java setUpBeforeClass method
36-
application-beans.xml
36+
application-beans.xml dataSource bean

0 commit comments

Comments
 (0)