swagger-spring-boot-starter

Some encapsulation of swagger

License

License

Categories

Categories

Spring Boot Container Microservices Swagger Program Interface REST Frameworks
GroupId

GroupId

io.github.whyareyousoseriously
ArtifactId

ArtifactId

swagger-spring-boot-starter
Last Version

Last Version

0.0.6.RELEASE
Release Date

Release Date

Type

Type

jar
Description

Description

swagger-spring-boot-starter
Some encapsulation of swagger
Project URL

Project URL

https://projects.spring.io/spring-boot/#/spring-boot-starter-parent/swagger-spring-boot-starter
Source Code Management

Source Code Management

https://github.com/whyareyousoseriously/cmdbuilding-operation

Download swagger-spring-boot-starter

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.whyareyousoseriously/swagger-spring-boot-starter/ -->
<dependency>
    <groupId>io.github.whyareyousoseriously</groupId>
    <artifactId>swagger-spring-boot-starter</artifactId>
    <version>0.0.6.RELEASE</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.whyareyousoseriously/swagger-spring-boot-starter/
implementation 'io.github.whyareyousoseriously:swagger-spring-boot-starter:0.0.6.RELEASE'
// https://jarcasting.com/artifacts/io.github.whyareyousoseriously/swagger-spring-boot-starter/
implementation ("io.github.whyareyousoseriously:swagger-spring-boot-starter:0.0.6.RELEASE")
'io.github.whyareyousoseriously:swagger-spring-boot-starter:jar:0.0.6.RELEASE'
<dependency org="io.github.whyareyousoseriously" name="swagger-spring-boot-starter" rev="0.0.6.RELEASE">
  <artifact name="swagger-spring-boot-starter" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.whyareyousoseriously', module='swagger-spring-boot-starter', version='0.0.6.RELEASE')
)
libraryDependencies += "io.github.whyareyousoseriously" % "swagger-spring-boot-starter" % "0.0.6.RELEASE"
[io.github.whyareyousoseriously/swagger-spring-boot-starter "0.0.6.RELEASE"]

Dependencies

compile (7)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter jar 2.1.4.RELEASE
org.springframework.boot : spring-boot-starter-web jar 2.1.4.RELEASE
io.springfox : springfox-swagger2 jar 2.9.2
io.springfox : springfox-swagger-ui jar 2.9.2
org.springframework.boot : spring-boot-starter-security jar 2.1.4.RELEASE
org.springframework.boot : spring-boot-configuration-processor Optional jar 2.1.4.RELEASE
org.springframework.boot : spring-boot-autoconfigure jar 2.1.4.RELEASE

Project Modules

There are no modules declared in this project.

cmdbuilding-operation

Introduction

用于对cmdbuilding进行CRUD

Documentation

Features

  • 1、对cmdbuilding管理的class中的卡片进行CRUD操作。

Getting started

maven

<dependency>
   <groupId>io.github.whyareyousoseriously</groupId>
   <artifactId>cmdbuilding-springboot-starter</artifactId>
   <version>0.0.1-RELEASE</version>
</dependency>
cmdb:
  ip: xxxxx
  port: xxx
  username: xxxx
  password: xxxx

部分使用如下

    @Autowired
    private CmdbuildingTableOperation cmdbuildingTableOperation;

    public void findAllTest(){
        List<CAppInfo> cAppInfos = cmdbuildingTableOperation.find(
                "tablename",
                SessionFactory.makeSessionId(cmdbuildingTableOperation.getCmdbConfig()),
                CAppInfo.class).getData();
    }
    
    public void findPartTest(){
        List<CAppInfo> cAppInfos = cmdbuildingTableOperation.find(
                "tablename",
                CmdbFilter.builder().condition("condition").conditionValue("value").build(),
                SessionFactory.makeSessionId(cmdbuildingTableOperation.getCmdbConfig()),
                CAppInfo.class).getData();
    }

Communication

Contributing

欢迎参与项目贡献!比如提交PR修复一个bug,或新建Issue讨论新特性或者变更。

Copyright and License

This product is open source and free, and will continue to provide free community technical support. Individual or enterprise users are free to access and use.

Versions

Version
0.0.6.RELEASE
0.0.5.RELEASE
0.0.3.RELEASE
0.0.2-RELEASE
0.0.1-RELEASE