Git Product home page Git Product logo

querydsl-spring's Introduction

Playground project for queryDSL

I 'm trying out queryDSL to access SQL databases. It may be using Spring Data in the future.

Things I' m likely to try in here:

  • Different projections from the ResultSet back to POJOs
  • Batch support
  • Data migration / consolidation
  • integration with spring data

In general: nothing production ready, but giving queryDSL a spin.

One of my possible use cases might be the data consolidation from different datasources. therefore, the maven plugin is configured to connect to 2 postgres databases and build querytypes and beans.

The needed tables can be constructed via:

create table server (
    id serial,
    name varchar(10),
    primary key (id)
);

create table player (
    serverid integer,
    gameid integer,
    name varchar(50),
    closed date,
    guildid integer,
    upgraded date,
    PRIMARY key(serverid,gameid),
    foreign key (serverid) references server(id)
);

querydsl-spring's People

Contributors

taseroth avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.