spring-oxygen-freecode

Spring rapid development integration framework.

Лицензия

Лицензия

Группа

Группа

com.isxcode.oxygen
Идентификатор

Идентификатор

spring-oxygen-freecode
Последняя версия

Последняя версия

0.0.2
Дата

Дата

Тип

Тип

pom.sha512
Описание

Описание

spring-oxygen-freecode
Spring rapid development integration framework.
Ссылка на сайт

Ссылка на сайт

https://github.com/isxcode/spring-oxygen
Система контроля версий

Система контроля версий

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

Скачать spring-oxygen-freecode

Зависимости

runtime (5)

Идентификатор библиотеки Тип Версия
org.springframework.boot : spring-boot-starter-web jar
org.apache.logging.log4j : log4j-api jar 2.14.1
org.junit.jupiter : junit-jupiter jar
com.isxcode.oxygen : spring-oxygen-core jar 0.0.2
com.isxcode.oxygen : spring-oxygen-flysql jar 0.0.2

Модули Проекта

Данный проект не имеет модулей.

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

Версии библиотеки

Версия
0.0.2
0.0.1
0.0.1-alpha-1
v0.0.2-alpha-1