-
I am upgrading my springboot application. I am upgrading spring-boot-starter-parent from 2.6.12 to 3.0.5
With that the spring framework is updated and everything else that comes with it. One of the m…
-
I am using 2.7.15-SNAPSHOT, and have been trying to use dependencies for boot-starter and springfox-swagger-ui but all I am getting is not found, tho springfox-swagger2 is okay. What's the fix?
…
-
## WS-2020-0407 - Medium Severity Vulnerability
Vulnerable Library - springfox-swagger2-3.0.0.jar
JSON API documentation for spring based applications
Library home page: https://github.com/springfox…
-
My controller is the following:
```java
@GetMapping
public ResponseEntity getAll(final @PageableDefault(sort = "id") Pageable pageable) {
return ResponseEntity.ok(null);
}
```
The…
-
Vulnerable Library - springfox-boot-starter-3.0.0.jar
Path to dependency file: /build.gradle
Path to vulnerable library: /home/wss-scanner/.gradle/caches/modules-2/files-2.1/io.springfox/springfox-…
-
- [ ] What version of the library are you using? Is it the latest version?
```
io.springfox
springfox-swagger2
2.8.0
io.springfox
springfox-swagger-ui
2.8.0
```…
-
The lines below log a WARN message about a missing documentation group. The input to the `/api-docs?group=` URL query parameter is untrusted input and is not encoded before being written to the log.
…
-
# **Springfox Swagger Version**
2.8.0
# **Spring Boot Version**
2.0.2.RELEASE
# **Description**
When using `component-indexer` with `springfox-swagger2`, the application fails to start.
…
-
-
### 项目基本目录结构
```
RootDir
│
├──api #提供给外部系统访问的API
│
├──backend #后台系统需要访问的API接口
│
├──business #业务层,数据访问等核心业务,api、backend、job会调用
│
├──config #通用配置
│
├──core #核心层,其他所有项目都会依赖这一层
│
├…