我在 Java rest service.model 类中使用 swagger 不填充@apimodel
和@apimodelproperty
. 当我使用高昂的弹簧 MVC 版本时,它会填充。但是,我收到错误,例如此版本不包含 Documention 配置。如何解决这个问题。swagger spring MVC?
0.5.3 version pom.xml
Spring.xml
这个 bean 包含在 spring XML 文件中。
<bean id="documentationConfig"
class="com.mangofactory.swagger.configuration.DocumentationConfig" />
控制器 HomeController.java
package com.example.anand.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import com.wordnik.swagger.annotations.Api;
import com.wordnik.swagger.annotations.ApiOperation;
@Api(value = "main controller", description = "Endpoint for TEST Managemenent")
@Controller
@RequestMapping("/newfinalmvc")
public class HomeController {
@RequestMapping(value = "/addnew", method = RequestMethod.POST)
@ApiOperation(value = "Addnew ", notes = "Add new Controller")
public @ResponseBody Object addNew(@RequestBody hello hel) {
String getName = hel.getName();
System.out.println(getName);
hello h1 = new hello();
h1.setName(getName);
return h1;
}
}
有助于设置和获取 @Apimodel 和 @Apimodelproperty 注释的模型类不在模型类级别显示
public class hello {
String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
为什么我会面临这个问题?