Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazuki43zoo/spring-boot-mybatis-sample
https://github.com/kazuki43zoo/spring-boot-mybatis-sample
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/kazuki43zoo/spring-boot-mybatis-sample
- Owner: kazuki43zoo
- Created: 2015-06-25T18:49:41.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-22T17:40:44.000Z (over 3 years ago)
- Last Synced: 2024-04-14T04:44:14.494Z (7 months ago)
- Language: Java
- Size: 17.6 KB
- Stars: 6
- Watchers: 5
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# spring-boot-mybatis-sample
The verifying application for https://github.com/mybatis/mybatis-3/issues/325.
## How to build a projects
```bash
mvn clean package
```## How to run an application
```bash
java -jar spring-boot-app/target/spring-boot-app-1.0-SNAPSHOT.jar
```## How to access a sample processing
* Access URL: `GET http://localhost:8080/todos/001`
* Result : `createdAt` is null. -> not apply custom type handler.## Workaround for this issue
* Please checkout `workaround` branch.
* build a projects
* run an application
* access a sample processing`createdAt` is not null. -> apply custom type handler.
## Using MyBatis Spring Boot 1.0.1-SNAPSHOT
* Please checkout `mybatis-spring-boot` branch.
* build a projects
* run an application
* access a sample processing`createdAt` is not null. -> apply custom type handler.