https://github.com/honwhy/examples
https://github.com/honwhy/examples
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/honwhy/examples
- Owner: honwhy
- Created: 2025-03-14T14:38:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-26T03:01:32.000Z (about 1 year ago)
- Last Synced: 2025-05-19T13:15:50.978Z (about 1 year ago)
- Language: Java
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# examples
example project for exploring programming gimmicks
## mybatis
explain ResultSetHandler
## copy request
ex: copy request to other server
## include test
use `@Category(IncludeTest.class)` to specify test cases
## AbstractProcessor
`AtVersionProcessor`
```xml
org.ow2.asm
asm
9.7.1
com.squareup
javapoet
1.10.0
```
## csv
define annotations to help output csv file
```xml
org.apache.commons
commons-csv
1.10.0
```
## inspired by
- [Tagging and Filtering JUnit Tests](https://www.baeldung.com/junit-filtering-tests)
- [java-poet](https://www.baeldung.com/java-poet)