πͺ Stack : Spring boot
π Version: 3.0.4
π Gruop ID : com.readme
π Artifact ID : rss
π Java Version :17
π DB : MariaDB
.
βββ java
βΒ Β βββ com
βΒ Β βββ readme
βΒ Β βββ rss
βΒ Β βββ controller
βΒ Β βΒ Β βββ MarkdownController.java
βΒ Β βΒ Β βββ UnzipController.java
βΒ Β βββ data
βΒ Β βΒ Β βββ dao
βΒ Β βΒ Β βΒ Β βββ FrameworkDAO.java
βΒ Β βΒ Β βΒ Β βββ Impl
βΒ Β βΒ Β βΒ Β βΒ Β βββ FrameworkDAOImpl.java
βΒ Β βΒ Β βΒ Β βΒ Β βββ ProjectDAOImpl.java
βΒ Β βΒ Β βΒ Β βΒ Β βββ UserDAOImpl.java
βΒ Β βΒ Β βΒ Β βββ ProjectDAO.java
βΒ Β βΒ Β βΒ Β βββ UserDAO.java
βΒ Β βΒ Β βββ dto
βΒ Β βΒ Β βΒ Β βββ FrameworkDTO.java
βΒ Β βΒ Β βΒ Β βββ ProjectDTO.java
βΒ Β βΒ Β βΒ Β βββ UserDTO.java
βΒ Β βΒ Β βββ entity
βΒ Β βΒ Β βΒ Β βββ compositeKey
βΒ Β βΒ Β βΒ Β βΒ Β βββ ProjectPK.java
βΒ Β βΒ Β βΒ Β βββ FrameworkEntity.java
βΒ Β βΒ Β βΒ Β βββ ProjectEntity.java
βΒ Β βΒ Β βΒ Β βββ UserEntity.java
βΒ Β βΒ Β βββ handler
βΒ Β βΒ Β βΒ Β βββ FrameworkHandler.java
βΒ Β βΒ Β βΒ Β βββ Impl
βΒ Β βΒ Β βΒ Β βΒ Β βββ FrameworkHandlerImpl.java
βΒ Β βΒ Β βΒ Β βΒ Β βββ ProjectHandlerImpl.java
βΒ Β βΒ Β βΒ Β βΒ Β βββ UserHandlerImpl.java
βΒ Β βΒ Β βΒ Β βββ ProjectHandler.java
βΒ Β βΒ Β βΒ Β βββ UserHandler.java
βΒ Β βΒ Β βββ repository
βΒ Β βΒ Β βΒ Β βββ FrameworkRepository.java
βΒ Β βΒ Β βΒ Β βββ ProjectRepository.java
βΒ Β βΒ Β βΒ Β βββ UserRepository.java
βΒ Β βΒ Β βββ service
βΒ Β βΒ Β βββ FrameworkService.java
βΒ Β βΒ Β βββ Impl
βΒ Β βΒ Β βΒ Β βββ FrameworkServiceImpl.java
βΒ Β βΒ Β βΒ Β βββ MdDownloadServiceImpl.java
βΒ Β βΒ Β βΒ Β βββ ProjectServiceImpl.java
βΒ Β βΒ Β βΒ Β βββ RegisterServiceImpl.java
βΒ Β βΒ Β βΒ Β βββ UserServiceImpl.java
βΒ Β βΒ Β βββ MdDownloadService.java
βΒ Β βΒ Β βββ ProjectService.java
βΒ Β βΒ Β βββ RegisterService.java
βΒ Β βΒ Β βββ UserService.java
βΒ Β βββ RssApplication.java
βββ resources
βββ application.properties
17 directories, 36 files | HTTP | API | URL | Return Type | Parameters |
|---|---|---|---|---|
| MarkdownController.java | ||||
| Post | makeMDzipFile() | /mdZipFile | byte[] | @RequestBody List<Map<String Object>> readme |
| UnzipController.java | ||||
| Post | getFileData() | /register2 | HashMap<String,Object> | @RequestParam("jsonParam1") String repoLink |
| Post | saveData() | /framework | String | @RequestParam("projectId") String projectId @RequestParam("frameworkName") String frameworkName |
| Post | editPeriodImage() | /editPeriod | String | @RequestParam("start_date") String startDate @RequestParam("end_date") String endDate |
| Post | allData() | /alldata | Map<String,String[]> | @RequestParam("projectId") String projectId |
| Column Name |
|---|
| name (PK) |
| type |
| content |
| Column Name |
|---|
| id (PK) |
| fileName (PK) |
| filePath (PK) |
| fileContent |
| detail |
| Column Name |
|---|
| projectId (PK) |
| userName |
| repositoryName |
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.14.2</version>
</dependency>
</dependencies>The MIT License (MIT)
Copyright (c) 2023 DevDachan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
