├── .gitignore ├── README.md ├── create-multiple-sheet-excel-file-from-database ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── hardik │ │ │ │ └── bharta │ │ │ │ ├── CreateMultipleSheetExcelFileFromDatabaseApplication.java │ │ │ │ ├── bootstrap │ │ │ │ └── DataPopulationOnBootstrap.java │ │ │ │ ├── configuration │ │ │ │ ├── OpenApiConfiguration.java │ │ │ │ └── properties │ │ │ │ │ └── OpenApiConfigurationProperties.java │ │ │ │ ├── constant │ │ │ │ └── ApiConstant.java │ │ │ │ ├── controller │ │ │ │ ├── ExcelController.java │ │ │ │ └── SuperHeroController.java │ │ │ │ ├── dto │ │ │ │ └── SuperHeroCreationRequestDto.java │ │ │ │ ├── entity │ │ │ │ ├── MasterComic.java │ │ │ │ └── SuperHero.java │ │ │ │ ├── excel │ │ │ │ ├── service │ │ │ │ │ └── ExcelService.java │ │ │ │ └── utility │ │ │ │ │ └── ExcelCellUtils.java │ │ │ │ ├── exception │ │ │ │ ├── DuplicateSuperHeroNameException.java │ │ │ │ └── handler │ │ │ │ │ ├── DuplicateSuperHeroNameExceptionHandler.java │ │ │ │ │ └── ValidationFailureExceptionHandler.java │ │ │ │ ├── repository │ │ │ │ ├── MasterComicRepository.java │ │ │ │ └── SuperHeroRepository.java │ │ │ │ └── service │ │ │ │ └── SuperHeroService.java │ │ └── resources │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── hardik │ │ └── bharta │ │ └── CreateMultipleSheetExcelFileFromDatabaseApplicationTests.java └── system.properties ├── create-single-excel-from-database ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── hardik │ │ │ └── killercroc │ │ │ ├── CreateSingleExcelFromDatabaseApplication.java │ │ │ ├── bootstrap │ │ │ └── EmployeeDataPopulationOnBootstrap.java │ │ │ ├── configuration │ │ │ ├── OpenApiConfiguration.java │ │ │ └── properties │ │ │ │ └── OpenApiConfigurationProperties.java │ │ │ ├── constant │ │ │ └── ApiConstant.java │ │ │ ├── controller │ │ │ ├── EmployeeController.java │ │ │ └── ExcelController.java │ │ │ ├── dto │ │ │ └── EmployeeCreationRequestDto.java │ │ │ ├── entity │ │ │ └── Employee.java │ │ │ ├── excel │ │ │ └── service │ │ │ │ └── ExcelService.java │ │ │ ├── exception │ │ │ └── handler │ │ │ │ └── ValidationFailureExceptionHandler.java │ │ │ ├── repository │ │ │ └── EmployeeRepository.java │ │ │ ├── service │ │ │ └── EmployeeService.java │ │ │ └── utility │ │ │ └── ExcelCellUtils.java │ │ └── resources │ │ └── application.properties └── system.properties ├── read-excel-to-database ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── hardik │ │ │ │ └── kofta │ │ │ │ ├── ReadExcelToDatabaseApplication.java │ │ │ │ ├── annotation │ │ │ │ ├── IsXlsx.java │ │ │ │ └── aspect │ │ │ │ │ └── CheckExcelFormatXlsxAspect.java │ │ │ │ ├── bean │ │ │ │ └── OtpCacheBean.java │ │ │ │ ├── configuration │ │ │ │ ├── OpenApiConfiguration.java │ │ │ │ └── properties │ │ │ │ │ ├── ExcelCacheConfigurationProperties.java │ │ │ │ │ └── OpenApiConfigurationProperties.java │ │ │ │ ├── constant │ │ │ │ ├── ApiPath.java │ │ │ │ └── ApiSummary.java │ │ │ │ ├── controller │ │ │ │ ├── EmployeeController.java │ │ │ │ └── ExcelController.java │ │ │ │ ├── entity │ │ │ │ └── Employee.java │ │ │ │ ├── excel │ │ │ │ └── service │ │ │ │ │ └── ExcelService.java │ │ │ │ ├── exception │ │ │ │ ├── FileNotSameThatWasValidatedException.java │ │ │ │ ├── InvalidCodeException.java │ │ │ │ ├── InvalidExcelFileExtensionException.java │ │ │ │ ├── InvalidTemplateFormatException.java │ │ │ │ └── handler │ │ │ │ │ ├── FileNotSameThatWasValidatedExceptionHandler.java │ │ │ │ │ ├── InvalidCodeExceptionHandler.java │ │ │ │ │ ├── InvalidExcelFileExtensionExceptionHandler.java │ │ │ │ │ └── InvalidTemplateFormatExceptionHandler.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── service │ │ │ │ └── EmployeeService.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── template.xlsx │ └── test │ │ └── java │ │ └── com │ │ └── hardik │ │ └── kofta │ │ └── ReadExcelToDatabaseApplicationTests.java └── system.properties ├── validate-excel-for-error-list-response ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── hardik │ │ │ │ └── pyaaru │ │ │ │ ├── ValidateExcelForErrorListResponseApplication.java │ │ │ │ ├── annotation │ │ │ │ ├── IsXlsx.java │ │ │ │ └── aspect │ │ │ │ │ └── CheckExcelFormatXlsxAspect.java │ │ │ │ ├── bootstrap │ │ │ │ └── EmployeeDataPopulationOnBootstrap.java │ │ │ │ ├── configuration │ │ │ │ ├── OpenApiConfiguration.java │ │ │ │ └── properties │ │ │ │ │ └── OpenApiConfigurationProperties.java │ │ │ │ ├── controller │ │ │ │ ├── EmployeeController.java │ │ │ │ └── ExcelController.java │ │ │ │ ├── entity │ │ │ │ └── Employee.java │ │ │ │ ├── exception │ │ │ │ ├── InvalidExcelFileExtensionException.java │ │ │ │ ├── InvalidTemplateFormatException.java │ │ │ │ └── handler │ │ │ │ │ ├── InvalidExcelFileExtensionExceptionHandler.java │ │ │ │ │ └── InvalidTemplateFormatExceptionHandler.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── service │ │ │ │ └── ExcelService.java │ │ └── resources │ │ │ └── application.properties │ └── test │ │ └── java │ │ └── com │ │ └── hardik │ │ └── pyaaru │ │ └── ValidateExcelForErrorListResponseApplicationTests.java └── system.properties └── validate-excel-for-error-response-modify-same-file ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── hardik │ │ │ └── durian │ │ │ ├── ValidateExcelForErrorResponseModifySameFileApplication.java │ │ │ ├── annotation │ │ │ ├── IsXlsx.java │ │ │ └── aspect │ │ │ │ └── CheckExcelFormatXlsxAspect.java │ │ │ ├── bootstrap │ │ │ └── EmployeeDataPopulationOnBootstrap.java │ │ │ ├── configuration │ │ │ ├── OpenApiConfiguration.java │ │ │ └── properties │ │ │ │ └── OpenApiConfigurationProperties.java │ │ │ ├── controller │ │ │ ├── EmployeeController.java │ │ │ └── ExcelController.java │ │ │ ├── dto │ │ │ └── ErrorMessageDto.java │ │ │ ├── entity │ │ │ └── Employee.java │ │ │ ├── exception │ │ │ ├── InvalidExcelFileExtensionException.java │ │ │ ├── InvalidTemplateFormatException.java │ │ │ └── handler │ │ │ │ ├── InvalidExcelFileExtensionExceptionHandler.java │ │ │ │ └── InvalidTemplateFormatExceptionHandler.java │ │ │ ├── repository │ │ │ └── EmployeeRepository.java │ │ │ └── service │ │ │ └── ExcelService.java │ └── resources │ │ └── application.properties └── test │ └── java │ └── com │ └── hardik │ └── durian │ └── ValidateExcelForErrorResponseModifySameFileApplicationTests.java └── system.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/README.md -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/.gitignore -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/README.md -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/mvnw -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/mvnw.cmd -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/pom.xml -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/CreateMultipleSheetExcelFileFromDatabaseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/CreateMultipleSheetExcelFileFromDatabaseApplication.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/bootstrap/DataPopulationOnBootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/bootstrap/DataPopulationOnBootstrap.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/configuration/OpenApiConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/configuration/OpenApiConfiguration.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/configuration/properties/OpenApiConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/configuration/properties/OpenApiConfigurationProperties.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/constant/ApiConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/constant/ApiConstant.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/controller/ExcelController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/controller/ExcelController.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/controller/SuperHeroController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/controller/SuperHeroController.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/dto/SuperHeroCreationRequestDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/dto/SuperHeroCreationRequestDto.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/entity/MasterComic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/entity/MasterComic.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/entity/SuperHero.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/entity/SuperHero.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/excel/service/ExcelService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/excel/service/ExcelService.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/excel/utility/ExcelCellUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/excel/utility/ExcelCellUtils.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/exception/DuplicateSuperHeroNameException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/exception/DuplicateSuperHeroNameException.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/exception/handler/DuplicateSuperHeroNameExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/exception/handler/DuplicateSuperHeroNameExceptionHandler.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/exception/handler/ValidationFailureExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/exception/handler/ValidationFailureExceptionHandler.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/repository/MasterComicRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/repository/MasterComicRepository.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/repository/SuperHeroRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/repository/SuperHeroRepository.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/service/SuperHeroService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/java/com/hardik/bharta/service/SuperHeroService.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/main/resources/application.properties -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/src/test/java/com/hardik/bharta/CreateMultipleSheetExcelFileFromDatabaseApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-multiple-sheet-excel-file-from-database/src/test/java/com/hardik/bharta/CreateMultipleSheetExcelFileFromDatabaseApplicationTests.java -------------------------------------------------------------------------------- /create-multiple-sheet-excel-file-from-database/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=15 -------------------------------------------------------------------------------- /create-single-excel-from-database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/.gitignore -------------------------------------------------------------------------------- /create-single-excel-from-database/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /create-single-excel-from-database/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /create-single-excel-from-database/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /create-single-excel-from-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/README.md -------------------------------------------------------------------------------- /create-single-excel-from-database/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/mvnw -------------------------------------------------------------------------------- /create-single-excel-from-database/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/mvnw.cmd -------------------------------------------------------------------------------- /create-single-excel-from-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/pom.xml -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/CreateSingleExcelFromDatabaseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/CreateSingleExcelFromDatabaseApplication.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/bootstrap/EmployeeDataPopulationOnBootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/bootstrap/EmployeeDataPopulationOnBootstrap.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/configuration/OpenApiConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/configuration/OpenApiConfiguration.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/configuration/properties/OpenApiConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/configuration/properties/OpenApiConfigurationProperties.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/constant/ApiConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/constant/ApiConstant.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/controller/EmployeeController.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/controller/ExcelController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/controller/ExcelController.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/dto/EmployeeCreationRequestDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/dto/EmployeeCreationRequestDto.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/entity/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/entity/Employee.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/excel/service/ExcelService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/excel/service/ExcelService.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/exception/handler/ValidationFailureExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/exception/handler/ValidationFailureExceptionHandler.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/repository/EmployeeRepository.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/service/EmployeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/service/EmployeeService.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/java/com/hardik/killercroc/utility/ExcelCellUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/java/com/hardik/killercroc/utility/ExcelCellUtils.java -------------------------------------------------------------------------------- /create-single-excel-from-database/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/create-single-excel-from-database/src/main/resources/application.properties -------------------------------------------------------------------------------- /create-single-excel-from-database/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=15 -------------------------------------------------------------------------------- /read-excel-to-database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/.gitignore -------------------------------------------------------------------------------- /read-excel-to-database/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /read-excel-to-database/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /read-excel-to-database/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /read-excel-to-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/README.md -------------------------------------------------------------------------------- /read-excel-to-database/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/mvnw -------------------------------------------------------------------------------- /read-excel-to-database/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/mvnw.cmd -------------------------------------------------------------------------------- /read-excel-to-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/pom.xml -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/ReadExcelToDatabaseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/ReadExcelToDatabaseApplication.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/annotation/IsXlsx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/annotation/IsXlsx.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/annotation/aspect/CheckExcelFormatXlsxAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/annotation/aspect/CheckExcelFormatXlsxAspect.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/bean/OtpCacheBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/bean/OtpCacheBean.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/configuration/OpenApiConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/configuration/OpenApiConfiguration.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/configuration/properties/ExcelCacheConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/configuration/properties/ExcelCacheConfigurationProperties.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/configuration/properties/OpenApiConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/configuration/properties/OpenApiConfigurationProperties.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/constant/ApiPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/constant/ApiPath.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/constant/ApiSummary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/constant/ApiSummary.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/controller/EmployeeController.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/controller/ExcelController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/controller/ExcelController.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/entity/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/entity/Employee.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/excel/service/ExcelService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/excel/service/ExcelService.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/exception/FileNotSameThatWasValidatedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/exception/FileNotSameThatWasValidatedException.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/exception/InvalidCodeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/exception/InvalidCodeException.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/exception/InvalidExcelFileExtensionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/exception/InvalidExcelFileExtensionException.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/exception/InvalidTemplateFormatException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/exception/InvalidTemplateFormatException.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/exception/handler/FileNotSameThatWasValidatedExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/exception/handler/FileNotSameThatWasValidatedExceptionHandler.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/exception/handler/InvalidCodeExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/exception/handler/InvalidCodeExceptionHandler.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/exception/handler/InvalidExcelFileExtensionExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/exception/handler/InvalidExcelFileExtensionExceptionHandler.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/exception/handler/InvalidTemplateFormatExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/exception/handler/InvalidTemplateFormatExceptionHandler.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/repository/EmployeeRepository.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/java/com/hardik/kofta/service/EmployeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/java/com/hardik/kofta/service/EmployeeService.java -------------------------------------------------------------------------------- /read-excel-to-database/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/resources/application.properties -------------------------------------------------------------------------------- /read-excel-to-database/src/main/resources/template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/main/resources/template.xlsx -------------------------------------------------------------------------------- /read-excel-to-database/src/test/java/com/hardik/kofta/ReadExcelToDatabaseApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/read-excel-to-database/src/test/java/com/hardik/kofta/ReadExcelToDatabaseApplicationTests.java -------------------------------------------------------------------------------- /read-excel-to-database/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=15 -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/.gitignore -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/README.md -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/mvnw -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/mvnw.cmd -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/pom.xml -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/ValidateExcelForErrorListResponseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/ValidateExcelForErrorListResponseApplication.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/annotation/IsXlsx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/annotation/IsXlsx.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/annotation/aspect/CheckExcelFormatXlsxAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/annotation/aspect/CheckExcelFormatXlsxAspect.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/bootstrap/EmployeeDataPopulationOnBootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/bootstrap/EmployeeDataPopulationOnBootstrap.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/configuration/OpenApiConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/configuration/OpenApiConfiguration.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/configuration/properties/OpenApiConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/configuration/properties/OpenApiConfigurationProperties.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/controller/EmployeeController.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/controller/ExcelController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/controller/ExcelController.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/entity/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/entity/Employee.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/exception/InvalidExcelFileExtensionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/exception/InvalidExcelFileExtensionException.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/exception/InvalidTemplateFormatException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/exception/InvalidTemplateFormatException.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/exception/handler/InvalidExcelFileExtensionExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/exception/handler/InvalidExcelFileExtensionExceptionHandler.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/exception/handler/InvalidTemplateFormatExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/exception/handler/InvalidTemplateFormatExceptionHandler.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/repository/EmployeeRepository.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/service/ExcelService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/java/com/hardik/pyaaru/service/ExcelService.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/main/resources/application.properties -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/src/test/java/com/hardik/pyaaru/ValidateExcelForErrorListResponseApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-list-response/src/test/java/com/hardik/pyaaru/ValidateExcelForErrorListResponseApplicationTests.java -------------------------------------------------------------------------------- /validate-excel-for-error-list-response/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=15 -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/.gitignore -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/README.md -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/mvnw -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/mvnw.cmd -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/pom.xml -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/ValidateExcelForErrorResponseModifySameFileApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/ValidateExcelForErrorResponseModifySameFileApplication.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/annotation/IsXlsx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/annotation/IsXlsx.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/annotation/aspect/CheckExcelFormatXlsxAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/annotation/aspect/CheckExcelFormatXlsxAspect.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/bootstrap/EmployeeDataPopulationOnBootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/bootstrap/EmployeeDataPopulationOnBootstrap.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/configuration/OpenApiConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/configuration/OpenApiConfiguration.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/configuration/properties/OpenApiConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/configuration/properties/OpenApiConfigurationProperties.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/controller/EmployeeController.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/controller/ExcelController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/controller/ExcelController.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/dto/ErrorMessageDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/dto/ErrorMessageDto.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/entity/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/entity/Employee.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/exception/InvalidExcelFileExtensionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/exception/InvalidExcelFileExtensionException.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/exception/InvalidTemplateFormatException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/exception/InvalidTemplateFormatException.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/exception/handler/InvalidExcelFileExtensionExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/exception/handler/InvalidExcelFileExtensionExceptionHandler.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/exception/handler/InvalidTemplateFormatExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/exception/handler/InvalidTemplateFormatExceptionHandler.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/repository/EmployeeRepository.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/service/ExcelService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/java/com/hardik/durian/service/ExcelService.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/main/resources/application.properties -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/src/test/java/com/hardik/durian/ValidateExcelForErrorResponseModifySameFileApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardikSinghBehl/spring-boot-apache-POI/HEAD/validate-excel-for-error-response-modify-same-file/src/test/java/com/hardik/durian/ValidateExcelForErrorResponseModifySameFileApplicationTests.java -------------------------------------------------------------------------------- /validate-excel-for-error-response-modify-same-file/system.properties: -------------------------------------------------------------------------------- 1 | java.runtime.version=15 --------------------------------------------------------------------------------