├── .github └── workflows │ ├── executeGradleTask.yml │ └── multiplejob.yml ├── .gitignore ├── CODEOWNERS ├── README.md ├── docs └── Feign.md ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── renovate.json ├── settings.gradle.kts └── src ├── frontend ├── .gitignore ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── HelloWorld.vue │ └── main.js └── vue.config.js ├── main ├── kotlin │ └── com │ │ └── huisam │ │ └── kotlinweb │ │ ├── KotlinWebApplication.kt │ │ ├── configuration │ │ ├── elasticsearch │ │ │ └── ElasticsearchConfiguration.kt │ │ └── jpa │ │ │ ├── JpaConfiguration.kt │ │ │ └── MasterSlaveConfiguration.kt │ │ ├── controller │ │ └── FeignController.kt │ │ ├── domain │ │ ├── AuthorDomain.kt │ │ └── PostsDomain.kt │ │ ├── exception │ │ └── EntityNotFoundException.kt │ │ ├── fegin │ │ ├── FeignPackage.kt │ │ ├── client │ │ │ ├── PlaceHolderFeignClient.kt │ │ │ └── rest │ │ │ │ └── RestPlaceHolderPost.kt │ │ └── config │ │ │ ├── FeignClientConfiguration.kt │ │ │ └── RetryLogger.kt │ │ ├── objectmapper │ │ └── ObjectMapperConfiguration.kt │ │ └── persistence │ │ ├── elasticsearch │ │ ├── ElasticSearchPersistencePackage.kt │ │ └── member │ │ │ └── MemberSearchTable.kt │ │ └── mysql │ │ ├── MysqlPersistencePackage.kt │ │ ├── author │ │ └── Author.kt │ │ ├── comment │ │ ├── Comment.kt │ │ └── CommentRepository.kt │ │ ├── index │ │ ├── CafeTable.kt │ │ └── CafeTableRepository.kt │ │ ├── order │ │ ├── OrderTable.kt │ │ ├── OrderTableInit.kt │ │ └── OrderTableRepository.kt │ │ ├── posts │ │ ├── Posts.kt │ │ └── PostsRepository.kt │ │ └── student │ │ ├── DatePrefixIdGenerator.kt │ │ ├── Student.kt │ │ └── Teacher.kt └── resources │ ├── application-database.yml │ ├── application-feign.yml │ └── application.yml └── test └── kotlin └── com └── huisam └── kotlinweb ├── KotlinWebApplicationTests.kt ├── fegin ├── AbstractFeignContractTest.kt ├── AbstractFeignWireMockTest.kt ├── client │ ├── RemotePlaceHolderClientContractIntegrationTest.kt │ └── RemotePlaceHolderClientIntegrationTest.kt └── config │ └── AutoConfigureTestFeign.kt ├── lifecycle ├── LifeCycleExtension.kt └── LifeCycleTest.kt ├── persistence ├── elasticsearch │ ├── AbstractElasticSearchPersistenceTest.kt │ ├── AutoConfigureElasticsearchPersistence.kt │ └── member │ │ └── MemberSearchTableIntegrationTest.kt └── mysql │ ├── AbstractMysqlPersistenceTest.kt │ ├── AutoConfigureMysqlPersistence.kt │ ├── comment │ └── CommentRepositoryIntegrationTest.kt │ ├── posts │ └── PostsRepositoryIntegrationTest.kt │ └── student │ ├── StudentRepositoryIntegrationTest.kt │ └── TeacherRepositoryIntegrationTest.kt └── tag ├── MinusTest.kt └── PlusTest.kt /.github/workflows/executeGradleTask.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/.github/workflows/executeGradleTask.yml -------------------------------------------------------------------------------- /.github/workflows/multiplejob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/.github/workflows/multiplejob.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Kotlin with Spring 2 | -------------------------------------------------------------------------------- /docs/Feign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/docs/Feign.md -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/gradlew.bat -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "kotlin-web" 2 | -------------------------------------------------------------------------------- /src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/.gitignore -------------------------------------------------------------------------------- /src/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/README.md -------------------------------------------------------------------------------- /src/frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/babel.config.js -------------------------------------------------------------------------------- /src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/package-lock.json -------------------------------------------------------------------------------- /src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/package.json -------------------------------------------------------------------------------- /src/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/public/favicon.ico -------------------------------------------------------------------------------- /src/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/public/index.html -------------------------------------------------------------------------------- /src/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/src/App.vue -------------------------------------------------------------------------------- /src/frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /src/frontend/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/src/main.js -------------------------------------------------------------------------------- /src/frontend/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/frontend/vue.config.js -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/KotlinWebApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/KotlinWebApplication.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/configuration/elasticsearch/ElasticsearchConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/configuration/elasticsearch/ElasticsearchConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/configuration/jpa/JpaConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/configuration/jpa/JpaConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/configuration/jpa/MasterSlaveConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/configuration/jpa/MasterSlaveConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/controller/FeignController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/controller/FeignController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/domain/AuthorDomain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/domain/AuthorDomain.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/domain/PostsDomain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/domain/PostsDomain.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/exception/EntityNotFoundException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/exception/EntityNotFoundException.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/fegin/FeignPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/fegin/FeignPackage.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/fegin/client/PlaceHolderFeignClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/fegin/client/PlaceHolderFeignClient.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/fegin/client/rest/RestPlaceHolderPost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/fegin/client/rest/RestPlaceHolderPost.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/fegin/config/FeignClientConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/fegin/config/FeignClientConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/fegin/config/RetryLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/fegin/config/RetryLogger.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/objectmapper/ObjectMapperConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/objectmapper/ObjectMapperConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/ElasticSearchPersistencePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/ElasticSearchPersistencePackage.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/member/MemberSearchTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/member/MemberSearchTable.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/MysqlPersistencePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/MysqlPersistencePackage.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/author/Author.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/author/Author.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/comment/Comment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/comment/Comment.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/comment/CommentRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/comment/CommentRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/index/CafeTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/index/CafeTable.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/index/CafeTableRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/index/CafeTableRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/order/OrderTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/order/OrderTable.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/order/OrderTableInit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/order/OrderTableInit.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/order/OrderTableRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/order/OrderTableRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/posts/Posts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/posts/Posts.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/posts/PostsRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/posts/PostsRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/student/DatePrefixIdGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/student/DatePrefixIdGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/student/Student.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/student/Student.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/student/Teacher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/kotlin/com/huisam/kotlinweb/persistence/mysql/student/Teacher.kt -------------------------------------------------------------------------------- /src/main/resources/application-database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/resources/application-database.yml -------------------------------------------------------------------------------- /src/main/resources/application-feign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/resources/application-feign.yml -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/KotlinWebApplicationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/KotlinWebApplicationTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/fegin/AbstractFeignContractTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/fegin/AbstractFeignContractTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/fegin/AbstractFeignWireMockTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/fegin/AbstractFeignWireMockTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/fegin/client/RemotePlaceHolderClientContractIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/fegin/client/RemotePlaceHolderClientContractIntegrationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/fegin/client/RemotePlaceHolderClientIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/fegin/client/RemotePlaceHolderClientIntegrationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/fegin/config/AutoConfigureTestFeign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/fegin/config/AutoConfigureTestFeign.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/lifecycle/LifeCycleExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/lifecycle/LifeCycleExtension.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/lifecycle/LifeCycleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/lifecycle/LifeCycleTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/AbstractElasticSearchPersistenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/AbstractElasticSearchPersistenceTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/AutoConfigureElasticsearchPersistence.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/AutoConfigureElasticsearchPersistence.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/member/MemberSearchTableIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/elasticsearch/member/MemberSearchTableIntegrationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/AbstractMysqlPersistenceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/AbstractMysqlPersistenceTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/AutoConfigureMysqlPersistence.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/AutoConfigureMysqlPersistence.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/comment/CommentRepositoryIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/comment/CommentRepositoryIntegrationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/posts/PostsRepositoryIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/posts/PostsRepositoryIntegrationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/student/StudentRepositoryIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/student/StudentRepositoryIntegrationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/student/TeacherRepositoryIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/persistence/mysql/student/TeacherRepositoryIntegrationTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/tag/MinusTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/tag/MinusTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/huisam/kotlinweb/tag/PlusTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huisam/kotlin-web/HEAD/src/test/kotlin/com/huisam/kotlinweb/tag/PlusTest.kt --------------------------------------------------------------------------------