springdoc swagger ui没有显示实体组件模型模式



org.springdoc-openapi-ui版本=1.5.13使用Maven 4.0.0java 11

型号user.java

@Entity(name = "User")
@Table(name = "User")
public class User {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private Integer id;
@Column
@NotBlank(message = "user last name cannot be blank")
@NotEmpty(message = "user last name cannot be empty")
@Pattern(regexp="^[a-zA-Z]",message="last name must contain only alpha characters")
private String lastName;
}

application.properties

springdoc.api-docs.path=/api-docs
springdoc.swagger-ui.path=/api-docs.html

何时前往:

localhost:8080/api-docs.html

我的其他模型(与User的体系结构相同(没有显示。

如果我去也是一样

localhost:8080/api docs

其他型号不在>组件>模式任一

它曾经用于我的其他项目(使用相同的springdoc版本(

实体必须具有嵌套实体属性的setget方法,以便swagger-ui显示其他实体的模型。在我的案例中,我添加了我在OneToMAnyManyToOne关系中拥有的嵌套实体的方法,并且模型显示

相关内容

  • 没有找到相关文章