An easy framework of java JDBC to be an alternative to ibatis/mybatis.
I dont's like XML in ibatis.
- excuse 1:
<select id="selectAB">
<![CDATA[
SELELCT A,B
FROM SOME_TABLE
WHERE A > #a#
]]>
</select>
Wooh, for a simple sql of only three lines, we need add a CDATA block to use > (I alwasy forget how to write CDATA, and every time I have to lookup XML CDATA reference). It's so bad. And also the select is redundant because the SQL itself is telling us it is a SELECT SQL and not some others.
- excuse 2:
When two or more members are working on the same XML file, only one bad SQL will corrupt all the SQLs in the same file:
<update id="xxx">
SELECT 1 FROM DUAL WHERE 1 > 0
</update>
Ooh, that is "one rotten apple could ruin a whole barrel of apples."
- excuse 3:
Every time, when I code with ibatis, I forget how to begin (eg. how to create Sqlmap and how to write valid ibatis xml) and have to copy some initial code from others.
- excuse 4:
There is no else in its dynamic. I have to write like:
<select id="xxx">
SELECT 1 FROM DUAL
WHERE 1 = 1
<isEmpty property="name">
AND name = #name#
</isEmpty>
<isNotEmpty property="name">
AND id = #id#
</isNotEmpty>
</select>
- excuse 5:
I don't like XML. I like free text and freedom. And so I created EQL which is realy very easy.
#One minute tutorial
- copy eql-DEFAULT.properties to your classpath eql and do some changes for your database connection info such as url, password and username.
- create a Demo class.
- create a Demo.eql resouce in classpath.
- write following code in your Demo main method:
String str = new Eql().selectFirst("demo").execute();
- write an eql in Demo.eql
-- [demo]
select 'X' from dual
- that's all. and you see it is very simple.
#Return one row
Map<String, String> row = new Eql().selectFirst("oneRow").execute();
-- [oneRow]
select 'X', 'Y' from dual
#Return a Javabean
XYBean xy = new Eql().selectFirst("javabean").execute();
-- [javabean returnType=XYBean]
select 'X', 'Y' from dual
#Return rows
List<XYBean> xys = new Eql().select("rows").
.returnType(XYBean.class)
.execute();
-- [rows]
select 'X' X, 'Y' Y from dual
union
select 'A' X, 'B' Y from dual
#With parameters in sequence
- example 1
String x = new Eql().selectFirst("autoSeq1")
.params("x")
.execute();
-- [autoSeq1]
select 'X' from dual
where 'x' = ##
- exmpale 2
String x = new Eql().selectFirst("autoSeq2")
.params("x", "y")
.execute();
-- [autoSeq2]
select 'X' from dual
where 'x' = ##
and 'y' = ##
- exmpale 3
String x = new Eql().selectFirst("autoSeq3")
.params("y", "x")
.execute();
-- [autoSeq3]
select 'X' from dual
where 'x' = #2#
and 'y' = #1#
#With parameters by properties name
- example 1
String x = new Eql().selectFirst("bean")
.params(new XyBean("x", "y"))
.execute();
-- [bean]
select 'X' from dual
where 'x' = #x#
and 'y' = #y#
- example 2
String x = new Eql().selectFirst("map")
.params(mapOf("x", "a", "y", "b"))
.execute();
-- [map]
select 'X' from dual
where 'a' = #x#
and 'b' = #y#
Eql's dynamic sql is now base on OGNL expression.
// real sql will be:
// select 'X' from dual where 'a' = ?
// and with one bound param "a"
String x = new Eql().selectFirst("ifDemo")
.params(mapOf("x", "a"))
.execute();
// real sql will be:
// select 'X' from dual
String y = new Eql().selectFirst("ifDemo")
.params(mapOf("x", "b"))
.execute();
-- [ifDemo]
select 'X' from dual
-- if x == "a"
where 'a' = #x#
-- end
-- [ifDemo2]
select 'X' from dual
-- if x == "a"
where 'a' = #x#
-- else if x == "b"
where 'b' = #x#
-- else
where 'c' = ##
-- end
-- or use more compact syntax
-- [ifDemo]
select 'X' from dual /* if x == "a" */ where 'a' = #x# /* end */
-- [ifDemo]
select 'X' from dual
-- iff x == "a"
where 'a' = #x#
-- or use more compact syntax
-- [ifDemo]
select 'X' from dual /* iff x == "a" */ where 'a' = #x#
to use STATIC fields:
public class OgnlStaticTest {
public static String STATE = "102";
@Test
public void test() {
String str = new Eql("mysql").id("ognlStatic").limit(1)
.params(ImmutableMap.of("state", "102", "x", "y"))
.execute();
assertThat(str, is(nullValue()));
str = new Eql("mysql").id("ognlStatic").limit(1)
.params(ImmutableMap.of("state", "103", "x", "x"))
.execute();
assertThat(str, is("X"));
}
}
-- [ognlStatic]
select 'X'
from DUAL
-- iff state == @org.n3r.eql.OgnlStaticTest@STATE
where 'x' = #x#
-- [switchSelect returnType=org.n3r.eql.SimpleTest$Bean]
SELECT A,B,C,D,E
FROM EQL_TEST
WHERE
-- switch a
-- case 1
A = 1
-- case 2
A = 2
-- end
-- or with default keyword
-- [switchSelectWithDefault returnType=org.n3r.eql.SimpleTest$Bean]
SELECT A,B,C,D,E
FROM ESQL_TEST
WHERE
-- switch a
-- case 1
A = 1
-- case 2
A = 2
-- default
A = 3
-- end
Map<String, Object> map = Maps.newHashMap();
map.put("list", ImmutableList.of("a", "b", "x"));
String str = new Eql().selectFirst("for1").params(map).execute();
assertThat(str, is("x"));
-- [for1]
SELECT 'x'
FROM DUAL
WHERE 'x' in
-- for item=item index=index collection=list open=( separator=, close=)
#item#
-- end
-- [isEmpty]
SELECT B
FROM ESQL_TEST
-- isEmpty a
WHERE A in (1,2)
-- end
-- [isNotEmpty]
SELECT B
FROM ESQL_TEST
-- isNotEmpty a
WHERE A = #a#
-- end
-- [updateAuthor]
update author
-- trim prefix=SET suffixOverrides=,
-- iff username != null
username=#username#,
-- iff password != null
PASSWORD=#password#,
-- iff email != null
email=#email#,
-- iff bio != null
bio=#bio#,
-- end
where id=#id#
-- [selectBlog]
SELECT STATE FROM BLOG
-- trim prefix=WHERE prefixOverrides=AND|OR
-- iff state != null
state = #state#
-- iff title != null
AND title like #title#
-- iff author != null and author.name != null
AND author_name like #author.name#
-- end
GROUP BY STATE
EqlPage page = new EqlPage(3, 2);
List<SimpleTest.Bean> beans = new Eql().id("testPage")
.returnType(SimpleTest.Bean.class)
.limit(page)
.params("DC")
.execute();
assertThat(page.getTotalRows(), is(10));
-- [testPage]
SELECT A,B,C,D,E
FROM ESQL_TEST
WHERE C = ##
String str = new Eql().selectFirst("replace1")
.params("x").dynamics("DUAL").execute();
assertThat(str, is("x"));
str = new Eql().selectFirst("replace2").params("x")
.dynamics(ImmutableMap.of("table", "DUAL")).execute();
assertThat(str, is("x"));
-- [replace1]
SELECT 'x'
FROM $$
WHERE 'x' = ##
-- [replace2]
SELECT 'x'
FROM $table$
WHERE 'x' = ##
Eql esql = new Eql();
esql.startBatch(/*batchSize*/10);
for (int i = 0; i < 10; ++i) {
String orderNo = randLetters(10);
String userId = randLetters(10);
int prizeItem = randInt(10);
int ret = esql.insert("insertPrizeBingoo")
.params(orderNo, "Olympic", "" + prizeItem, userId)
.execute();
assertEquals(0, ret);
}
esql.executeBatch();
-- [insertPrizeBingoo]
INSERT INTO EQL_TEST_BINGOO(ORDER_NO, ACTIVITY_ID, ITEM_ID, USER_ID, BINGOO_TIME)
VALUES(##, ##, ##, ##, SYSDATE)
public void testOracleBlob() {
new Eqll().id("insertBlob").params("中华人民共和国").execute();
byte[] bytes = new Eqll().id("selectBlob").limit(1).execute();
assertThat(new String(bytes, Charsets.UTF_8), is("中华人民共和国"));
String ret = new Eqll().id("selectBlobString").limit(1).execute();
assertThat(ret, is("中华人民共和国"));
AsResult asResult = new Eqll().id("selectBlobAsResult").limit(1).execute();
assertThat(asResult.getSeq(), is(1));
assertThat(asResult.getRemark(), is("中华人民共和国"));
Integer effectedRows = new Eqll().id("updateBlob").params("台湾省").execute();
assertThat(effectedRows, is(1));
ret = new Eqll().id("selectBlobString").limit(1).execute();
assertThat(ret, is("台湾省"));
}
public static class AsResult {
private String state;
private String remark;
private int seq;
// setters ang getters
}
-- [insertBlob onerr=resume]
DROP TABLE ESQL_BLOB;
CREATE TABLE ESQL_BLOB (BOB BLOB);
INSERT INTO ESQL_BLOB(BOB) VALUES(#:LOB#)
-- [selectBlob]
SELECT BOB FROM ESQL_BLOB
-- [selectBlobString returnType=string]
SELECT BOB FROM ESQL_BLOB
-- [selectBlobAsResult returnType=org.n3r.eql.JavaBlobTest$AsResult]
SELECT 1 as seq, BOB as remark FROM ESQL_BLOB
-- [updateBlob]
UPDATE ESQL_BLOB SET BOB = #:LOB#
Diamond-miner support example
Eql also can be loaded from diamond. First create eql/eql-diamond.properties on classpath like:
sql.resource.loader=org.n3r.eql.diamond.DiamondEqlResourceLoader
transactionType=jdbc
driver=oracle.jdbc.driver.OracleDriver
url=jdbc:oracle:thin:@127.0.0.1:1521:orcl
user=orcl
password=orcl
As you see, we redefined sql resource loader to diamond-specific. And then add a config in diamond:
group=EQL
dataId=org.n3r.eql.DiamondTest.eql
content=
-- [diamondDemo]
SELECT 'Hello' FROM DUAL
And then in java code
String str = new Eql("diamond").selectFirst("diamondDemo").execute();
System.out.println(str);
Eql eql = new Eql().id("selectStmt");
ESelectStmt selectStmt = eql.selectStmt();
selectStmt.executeQuery(3);
String str = selectStmt.next();
assertThat(str, is("CC"));
assertThat(selectStmt.next(), is(nullValue()));
selectStmt.executeQuery(4);
str = selectStmt.next();
assertThat(str, is("DC"));
assertThat(selectStmt.next(), is(nullValue()));
selectStmt.close();
eql.close();
Eql eql = new Eql().id("updateStmt");
EUpdateStmt updateStmt = eql.updateStmt();
int rows = updateStmt.update(3, "Bingoo");
assertThat(rows, is(1));
rows = updateStmt.update(4, "Dingoo");
assertThat(rows, is(1));
updateStmt.close();
eql.close();
-- [selectStmt]
SELECT C
FROM ESQL_TEST
WHERE A = ##
-- [updateStmt]
UPDATE ESQL_TEST
SET C = #2#
WHERE A = #1#
import org.n3r.eql.map.EqlRowMapper;
public static class MyMapper implements EqlRowMapper {
private String name;
@Override
public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
name = rs.getString(1);
return null;
}
public String getName() {
return name;
}
}
@Test
public void test() {
MyMapper myMapper = new MyMapper();
new Eql().returnType(myMapper).execute("SELECT 'X' FROM DUAL");
assertThat(myMapper.getName(), is("X"));
}
Eqll.choose(new EqlJdbcConfig("oracle.jdbc.driver.OracleDriver",
"jdbc:oracle:thin:@127.0.0.1:1521:orcl", "orcl", "orcl"));
Timestamp ts = new Eqll().limit(1).execute("SELECT SYSDATE FROM DUAL");
// or
Eqll.choose(new EqlPropertiesConfig(
EqlConfigKeys.DRIVER + "=oracle.jdbc.driver.OracleDriver\n" +
EqlConfigKeys.URL + "=jdbc:oracle:thin:@127.0.0.1:1521:orcl\n" +
EqlConfigKeys.USER + "=orcl\n" +
EqlConfigKeys.PASSWORD + "=orcl\n"));
Supported configs are listed below:
- Meaning: Full qualified class name(FQCN) that implemented
org.n3r.eql.trans.EqlConnection
interface. - Default: When jndiName is set, use
org.n3r.eql.trans.EqlJndiConnection
, otherwiseorg.n3r.eql.trans.EqlSimpleConnection
. - Samples:
org.n3r.eql.trans.EqlC3p0Connection
or your customed implementation.
- Meaning: Specified JNDI name to use JNDI datasource.
- Default: N/A.
- Samples: N/A.
- Meaning: Used together with jndiName.
- Default: None.
- Samples:
weblogic.jndi.WLInitialContextFactory
- Meaning: Used together with jndiName.
- Default: None.
- Samples:
t3://127.0.0.1:7001/
- Meaning: Used together with jndiName.
- Default: JDBC.
- Samples: JTA.
- Meaning: JDBC driver name.
- Default: None.
- Samples:
oracle.jdbc.driver.OracleDriver
,com.mysql.jdbc.Driver
, and ...
- Meaning: JDBC url.
- Default: None
- Samples:
jdbc:oracle:thin:@127.0.0.1:1521:orcl
,jdbc:mysql://localhost:3306/diamond?useUnicode=true&&characterEncoding=UTF-8&connectTimeout=1000&autoReconnect=true
- Meaning: JDBC username.
- Default: None.
- Samples: orcl.
- Meaning: JDBC password.
- Default: None.
- Samples: orcl.
- Meaning: Full quartified class name which implements
org.n3r.eql.base.ExpressionEvaluator
. - Default:
org.n3r.eql.impl.OgnlEvaluator
. - Samples: customed implementation.
- Meaning: EQL resource loader. FQCN which implements
org.n3r.eql.base.EqlResourceLoader
. - Default:
org.n3r.eql.impl.FileEqlResourceLoader
which read eql file of the same package and same base name with Eql's used java class. - Samples:
org.n3r.eql.diamond.DiamondEqlResourceLoader
or customed implementation.
- Meaning: EQL dynamic support language dirver. FQCN which implements
org.n3r.eql.base.DynamicLanguageDriver
. - Default:
org.n3r.eql.impl.DefaultDynamicLanguageDriver
which use SQL special comment to achieve dynamic SQL. - Samples:
org.n3r.eql.impl.FreemarkerDynamicLanguageDriver
or customed implementation.
- Meaning: Parse dynamic EQL while execution or not.
- Default: false.
- Samples: true or yes.
Integrated with diamond-client
- Add a diamond stone:
group=EqlConfig,dataId=DEFAULT,content=
driver=oracle.jdbc.driver.OracleDriver
url=jdbc:oracle:thin:@127.0.0.1:1521:orcl
user=orcl
password=orcl
- Use Dql to replace Eql to work with diamond connection configuration.
// read diamand content of group=EqlConfig, dataId=DEFAULT as connection config
new Eql().id("xxx").execute();
// read diamond content of group=EqlConfig, dataId=DSMALL as connection config
new Eql("DSMALL").id("yyy").execute();
In the connection config, set sql.resource.loader
to org.n3r.eql.diamond.DiamondEqlResourceLoader
.
package org.n3r.eql;
public class DiamondTest {
@Test
public void test1() throws InterruptedException {
// Will read diamond content of group=EQL,dataId=org.n3r.eql.DiamondTest.eql
// The diamond content can have the same structure with normal eql file.
String str = new Eql("diamond").selectFirst("diamondDemo").execute();
System.out.println(str);
}
}
Sql query result caching can be enabled with cache keyword in sql options:
-- [test1 cache]
SELECT TO_CHAR(SYSTIMESTAMP, 'HH24:MI:SS.FF6') FROM DUAL
The default cache model is based on guava cache with 1 day expired after write.
If you want to use an alternative cache model, you can use write like following:
-- global settings cacheModel.impl.myCache=@org.n3r.eql.cache.GuavaCacheProvider("expireAfterWrite=3s,maximumSize=1000")
-- [test1 cache cacheModel=myCache]
SELECT TO_CHAR(SYSTIMESTAMP, 'HH24:MI:SS.FF6') FROM DUAL
The class org.n3r.eql.cache.GuavaCacheProvider
is provided by eql and its cache builder spec is same to guava cache spec.
Custom cache provider class should implement org.n3r.eql.cache.EqlCacheProvider
and optionally to implement org.n3r.eql.spec.ParamsAppliable
when there are parameters to set.
- Inline comment such as
/* iff ... */
is parsed by regular expression, and this method will not ignore/* ... */
in the literal string such as'literal string /* if xxx */'
. - TO support some simple CRUD base on POJO.