example project for DBFlute with non-RDB
LastaFlute:
https://github.com/dbflute-example/dbflute-example-with-non-rdb
*ReplaceSchema
// call manage.sh at dbflute-example-with-non-rdb/dbflute_maihamadb
// and select replace-schema in displayed menu
...:dbflute_maihamadb ...$ sh manage.sh
*main() method
public class NonrdbBoot {
public static void main(String[] args) {
new JettyBoot(8175, "/nonrdb").asDevelopment(isNoneEnv()).bootAwait();
}
}
OptionalEntity<Product> result = c7aProductBhv.selectEntity(cb -> {
cb.query().acceptPK(productId);
});
How to use C7aFlute
contributed by U-NEXT: http://video.unext.jp/
PagingResultBean<Product> productPage = productBhv.selectPage(cb -> {
cb.query().setProductName_MatchPhrase(form.productName);
cb.query().setProductStatusCode_Equal(form.productStatus);
cb.query().addOrderBy_ProductName_Asc();
cb.query().addOrderBy_Id_Asc();
cb.paging(4, pageNumber);
});
contributed by CodeLibs Project: https://github.com/codelibs
OptionalEntity<Product> result = kvsProductBhv.selectEntityByProductId(cb -> {
cb.query().setProductId_Equal(productId);
});
How to use KvsFlute
contributed by U-NEXT: http://video.unext.jp/
to this URL.
https://github.com/dbflute-example/dbflute-example-with-remoteapi-gen
SolrPagingResultBean<SolrExample> result = solrExampleBhv.selectPage(cb -> {
cb.query().setLatestPurchaseDate_RangeSearchFrom(from);
cb.paging(10, 1);
});
How to use SolrFlute
contributed by U-NEXT: http://video.unext.jp/
Apache License 2.0
comming soon...