Unified Queries for Java
Go to file
2013-11-18 14:05:17 +02:00
querydsl-ant-test added contents 2010-05-13 20:58:48 +00:00
querydsl-apt Remove files 2013-10-29 22:08:21 +02:00
querydsl-codegen Integrate ColumnMetadata handling into code generation 2013-10-29 21:53:56 +02:00
querydsl-collections Bump version 2013-10-20 13:53:56 +03:00
querydsl-core Fix serialization of single item column lists #541 2013-11-05 22:11:51 +02:00
querydsl-devops Add Vagrant/Puppet setup for MySQL, PostgreSQL, Oracle and Cubrid. #548 2013-11-18 14:05:17 +02:00
querydsl-docs fix grammatical problem 2013-11-12 14:19:05 +01:00
querydsl-hibernate-search Bump version 2013-10-20 13:53:56 +03:00
querydsl-jdo Allow SQL joins to EntityPath 2013-11-08 11:26:52 +01:00
querydsl-jpa Remove prefixes in localnames #532 2013-11-10 20:41:49 +02:00
querydsl-jpa-codegen Bump version 2013-10-20 13:53:56 +03:00
querydsl-lucene3 Remove prefixes in localnames #532 2013-11-10 20:41:49 +02:00
querydsl-lucene4 Remove prefixes in localnames #532 2013-11-10 20:41:49 +02:00
querydsl-maven-plugin Add exportPrimaryKeys and exportForeignKeys options #543 2013-11-11 20:52:51 +02:00
querydsl-mongodb Remove prefixes in localnames #532 2013-11-10 20:41:49 +02:00
querydsl-root Upgrade codegen dependency 2013-10-23 20:42:35 +03:00
querydsl-scala Clean up ColumnMetadata content 2013-10-31 15:07:57 +02:00
querydsl-sql Remove prefixes in localnames #532 2013-11-10 20:41:49 +02:00
querydsl-sql-codegen Add exportPrimaryKeys and exportForeignKeys options #543 2013-11-11 20:52:51 +02:00
.gitignore Add Vagrant/Puppet setup for MySQL, PostgreSQL, Oracle and Cubrid. #548 2013-11-18 14:05:17 +02:00
README.md Add Vagrant/Puppet setup for MySQL, PostgreSQL, Oracle and Cubrid. #548 2013-11-18 14:05:17 +02:00

Querydsl

Querydsl is a framework which enables the construction of type-safe SQL-like queries for multiple backends including JPA, JDO and SQL in Java.

Instead of writing queries as inline strings or externalizing them into XML files they are constructed via a fluent API.

Getting started

Use these tutorials to get started

Support

Free support is provided in the Querydsl Google Group https://groups.google.com/forum/#!forum/querydsl

How to build

Querydsl provides releases via public Maven repositories, but you can build the sources also yourself like this

cd querydsl-root
mvn -Pjenkins,all -DskipTests=true clean install 

For more information visit the project homepage at http://www.querydsl.com/.

Vagrant/Puppet setup

For running tests, a Vagrant/Puppet setup is provided. It is based on Ubuntu 12.04 and comes with the following databases:

  • Oracle Express Edition 11g
  • PostgreSQL 9.1.10
  • MySQL 5.5.34
  • Cubrid 9.2

You will need to install VirtualBox, Puppet, Vagrant, the vagrant-vbguest plugin and librarian-puppet. You will also need to download the Oracle XE 11g installer file (oracle-xe-11.2.0-1.0.x86_64.rpm.zip) manually and place it in the querydsl-devops directory.

To launch the virtual machine:

$> cd querydsl-devops
devops$> librarian-puppet install
devops$> vagrant up

All of the databases' default ports are forwarded to the host machine. See the Vagrantfile for details.

How to contribute

GitHub pull requests are the way to contribute to Querydsl.

If you are unsure about the details of a contribution, ask on the Querydsl Google Group or create a ticket on GitHub.