cmdbuilding-springboot-starter

CRUD of cmdbuilding2.x

License

License

GroupId

GroupId

io.github.whyareyousoseriously
ArtifactId

ArtifactId

cmdbuilding-springboot-starter
Last Version

Last Version

0.0.5.RELEASE
Release Date

Release Date

Type

Type

jar
Description

Description

cmdbuilding-springboot-starter
CRUD of cmdbuilding2.x
Project URL

Project URL

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

Source Code Management

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

Download cmdbuilding-springboot-starter

How to add to project

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

Dependencies

compile (6)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter jar 2.1.5.RELEASE
org.projectlombok : lombok jar 1.18.8
com.alibaba : fastjson jar 1.2.47
org.springframework.boot : spring-boot-configuration-processor Optional jar 2.1.5.RELEASE
org.springframework.boot : spring-boot-autoconfigure jar 2.1.5.RELEASE
org.springframework.boot : spring-boot-starter-test jar 2.1.5.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.5.RELEASE
0.0.3-RELEASE
0.0.2-RELEASE
0.0.1-RELEASE