BAEL-1314 Guide to AbstractRoutingDatasource (#2989)

* BAEL-1314 initial import.  Guide to AbstractRoutingDatasource.

* BAEL-1314 Guide to Spring AbstractRoutingDatasource

* update test name and rename test classes

* move dsrouting example to spring-boot project.  rename db create script.
This commit is contained in:
chrisoberle
2017-11-09 19:15:03 -05:00
committed by maibin
parent a38e6e295e
commit 3bb538a2f7
8 changed files with 228 additions and 0 deletions
@@ -0,0 +1,5 @@
create table client (
id numeric,
name varchar(50),
constraint pk_client primary key (id)
);