spring-oxygen-cli

Spring rapid development integration framework.

License

License

Categories

Categories

CLI User Interface
GroupId

GroupId

com.isxcode.oxygen
ArtifactId

ArtifactId

spring-oxygen-cli
Last Version

Last Version

0.0.2
Release Date

Release Date

Type

Type

pom.sha512
Description

Description

spring-oxygen-cli
Spring rapid development integration framework.
Project URL

Project URL

https://github.com/isxcode/spring-oxygen
Source Code Management

Source Code Management

https://github.com/isxcode/spring-oxygen

Download spring-oxygen-cli

Dependencies

runtime (5)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter-web jar
org.apache.logging.log4j : log4j-api jar 2.14.1
org.junit.jupiter : junit-jupiter jar
org.springframework.shell : spring-shell-starter jar 2.0.1.RELEASE
com.isxcode.oxygen : spring-oxygen-core jar 0.0.2

Project Modules

There are no modules declared in this project.

spring-oxygen

Spring Oxygen

๐Ÿฆ„ Spring rapid development integration framework.

Github Build Maven Version Language grade: Java Coverage Status FOSSA Status

PRs Welcome Gitpod ready-to-code Discussions on github

Github Watch Github Star Github Fork

๐Ÿฃ Introduce

Spring Oxygen is rapid development integration framework for Spring . Important statement, enterprise-level development is recommended to be used with caution! For instructions on use, please check the website carefully. Welcome to develop and maintain together, please follow the github development specification.

๐Ÿ“ฆ Installation

  • For Gradle
dependencies {
    implementation 'com.isxcode.oxygen:oxygen-spring-boot-starter:0.0.2'
}
  • For Maven
<dependency>
    <groupId>com.isxcode.oxygen</groupId>
    <artifactId>oxygen-spring-boot-starter</artifactId>
    <version>0.0.2</version>
</dependency>

๐Ÿ”จ Usage

spring:
  datasource:
    driver-class-name: org.h2.Driver
    url: jdbc:h2:~/h2
    username: root
    password: root
@Repository
public class MetaDataRepository {

    private final Flysql flysql;

    public TestJdbc(Flysql flysql) {
        this.flysql = flysql;
    }

    public List<MetaData> queryJdbcMetaData() {
        return flysql.build().select(MetaData.class)
            .select("c1", "c2", "c3")
            .eq("c1", "v1")
            .between("c2", 0, 1)
            .like("c3", "green")
            .orderBy("c4", OrderType.DESC)
            .query();
    }
}

๐Ÿ“’ Documentation

Check out the Getting Started page for a quick overview.

๐Ÿ‘ Contributing

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Spring Oxygen.


Thanks for free JetBrains Open Source license

jetbrains
com.isxcode.oxygen

Isxcode

Versions

Version
0.0.2