All Projects → isxcode → Spring Oxygen

isxcode / Spring Oxygen

Licence: apache-2.0
🦄 Spring rapid development integration framework.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Spring Oxygen

Spring Boot
Spring Boot
Stars: ✭ 58,705 (+40386.21%)
Mutual labels:  framework, spring
Spring Data Neo4j
Provide support to increase developer productivity in Java when using Neo4j. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
Stars: ✭ 662 (+356.55%)
Mutual labels:  framework, spring
Spring Data Cassandra
Provides support to increase developer productivity in Java when using Apache Cassandra. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
Stars: ✭ 315 (+117.24%)
Mutual labels:  framework, spring
Spring Vault
Provides familiar Spring abstractions for HashiCorp Vault
Stars: ✭ 179 (+23.45%)
Mutual labels:  framework, spring
Spring Data Mongodb
Provide support to increase developer productivity in Java when using MongoDB. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
Stars: ✭ 1,253 (+764.14%)
Mutual labels:  framework, spring
Sureness
A simple and efficient open-source security framework that focus on protection of restful api.
Stars: ✭ 254 (+75.17%)
Mutual labels:  framework, spring
Spring Data Commons
Spring Data Commons. Interfaces and code shared between the various datastore specific implementations.
Stars: ✭ 542 (+273.79%)
Mutual labels:  framework, spring
Ax Boot Framework
Full Stack Java Web Application Framework with Java & HTML5
Stars: ✭ 244 (+68.28%)
Mutual labels:  framework, spring
Dolphin Platform
This repository contains all java related sources of the Dolphin Platform.
Stars: ✭ 69 (-52.41%)
Mutual labels:  framework, spring
Spring Data Rest
Simplifies building hypermedia-driven REST web services on top of Spring Data repositories
Stars: ✭ 743 (+412.41%)
Mutual labels:  framework, spring
Spring Data Jpa
Simplifies the development of creating a JPA-based data access layer.
Stars: ✭ 2,238 (+1443.45%)
Mutual labels:  framework, spring
Easyfxml
A collection of tools and libraries for easier development on the JavaFX platform!
Stars: ✭ 102 (-29.66%)
Mutual labels:  framework, spring
Spring Data R2dbc
Provide support to increase developer productivity in Java when using Reactive Relational Database Connectivity. Uses familiar Spring concepts such as a DatabaseClient for core API usage and lightweight repository style data access.
Stars: ✭ 534 (+268.28%)
Mutual labels:  framework, spring
Spring Security
Spring Security
Stars: ✭ 6,434 (+4337.24%)
Mutual labels:  framework, spring
Spring Data Redis
Provides support to increase developer productivity in Java when using Redis, a key-value store. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
Stars: ✭ 1,293 (+791.72%)
Mutual labels:  framework, spring
Spring Framework
Spring Framework
Stars: ✭ 45,396 (+31207.59%)
Mutual labels:  framework, spring
Roncoo Jui Springboot
基于Spring Boot框架,前台框架为JUI的后台框架,功能会继续添加,欢迎大家star和fork!该项目是为了大家更好地运用Spring Boot的功能,进行实战。如果没有使用过Spring Boot,也是一个学习的好项目。可以快速实现一个基于Spring Boot的后台管理系统,前端是基于JUI。
Stars: ✭ 139 (-4.14%)
Mutual labels:  spring
Raincat
强一致分布式事务框架
Stars: ✭ 1,785 (+1131.03%)
Mutual labels:  spring
Raptor
拍拍贷微服务rpc框架
Stars: ✭ 139 (-4.14%)
Mutual labels:  spring
Go Testdeep
Extremely flexible golang deep comparison, extends the go testing package, tests HTTP APIs and provides tests suite
Stars: ✭ 137 (-5.52%)
Mutual labels:  framework

spring-oxygen

Spring Oxygen

Spring rapid development integration framework.

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

Wiki PRs Welcome Gitpod ready-to-code

Github Watch Github Star Github Fork

🐣 Intro

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 Wiki carefully. Welcome to develop and maintain together, please follow the github development specification.

📦 Install

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

🔨 Usage

import com.ispong.oxygen.flysql.pojo.enums.OrderType;
import org.springframework.stereotype.Repository;
import com.ispong.oxygen.flysql.core.Flysql;

import java.util.List;

@Repository
public class LeoDogsRepository {

    public List<LeoDogsEntity> customQuery() {

        return Flysql.select(LeoDogsEntity.class)
            .select("name", "age", "color")
            .eq("name", "alen")
            .between("age", 12, 20)
            .like("color", "red")
            .orderBy("userIndex", OrderType.DESC)
            .query();
    }
}

Thanks for free JetBrains Open Source license

jetbrains

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].