我正在使用spring boot和swagger将旧的java 6 SOAP项目转换为java 8。我曾经在自动装配服务之前能够使用swagger,但现在我在浏览器中看到一个白页,错误会迅速出现在chrome的控制台中。
的pom.xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.8.0</version>
</dependency>
application.yaml
server:
port: 30001
在url中有localhost / null / swagger,所以我假设问题出在某处,我将上下文更改为test,然后错误是localhost / test / null /招摇..
@SpringBootApplication(scanBasePackages = {
"com.company.location.myprogram"
})
public class WebserviceApplication {