Skip to content

Commit 7311440

Browse files
committed
Merge pull request #7 from rkJun/master
add example the simple myBatisLogParser by tipJS 2 and author rkJun added
2 parents b852867 + ec653d7 commit 7311440

26 files changed

+20265
-2
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = function(grunt) {
1414
banner = "/*\n <%= pkg.name %> - OpenSource Javascript MVC Framework ver.2.0.0\n" +
1515
" Copyright 2013.08 \n" +
1616
" Dual licensed under the MIT or GPL Version 2 licenses\n" +
17-
" Author: SeungHyun PAEK, Hanghee Yi\n" +
17+
" Author: SeungHyun PAEK, Hanghee Yi, Juntai Park\n" +
1818
" HomePage: http://www.tipjs.com\n" +
1919
" Contact: http://www.tipjs.com/contact\n" +
2020
" License: MIT, GPL V2\n" +

examples/myBatisLogParser/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
myBatisLogParser
2+
================
3+
4+
myBatisLogParser
5+
6+
Before :
7+
Copy & Paste myBatis log ;
8+
```java
9+
DEBUG: java.sql.Connection - ==> Preparing: SELECT TEST1, TEST2 FROM DUAL WHERE COL1 = ? AND COL2 = ? AND NO = ?
10+
DEBUG: java.sql.PreparedStatement - ==> Parameters: test1(String), test2(String), 13(Long)
11+
```
12+
13+
After :
14+
```sql
15+
SELECT TEST1, TEST2 FROM DUAL WHERE COL1 = 'test1' AND COL2 = 'test2' AND NO = 13
16+
````

0 commit comments

Comments
 (0)