|
1 |
| -# Start R2DBC |
| 1 | +# Start spring-data-r2dbc |
2 | 2 |
|
3 |
| -For running unit test, need to : |
| 3 | +- Run unit test on H2 : `'mvn test'` or `'mvn test -P h2'` |
| 4 | +- Run unit test on Postgres : `'mvn test -P postgres'` |
| 5 | +- Run unit test on Mssql : `'mvn test -P mssql'` |
4 | 6 |
|
5 |
| -1. Create a empty postgres database with name 'test' and owner to 'test' with login password 'password' |
6 |
| -2. Run sql script file '[sql/postgres/schema-create.sql]'. |
7 |
| -3. Run 'mvn test'. |
| 7 | +## issues |
8 | 8 |
|
9 |
| -[sql/postgres/schema-create.sql]: https://github.com/start-java/start-r2dbc/blob/master/src/main/resources/sql/postgres/schema.sql |
10 |
| - |
11 |
| -## 1. [R2DBC] |
12 |
| - |
13 |
| -R2DBC > Reactive Relational Database Connectivity |
14 |
| - |
15 |
| -- [r2dbc-spi](https://github.com/r2dbc/r2dbc-spi) |
16 |
| -- [r2dbc-spi-test](https://github.com/r2dbc/r2dbc-spi/tree/master/r2dbc-spi-test) - a Technology Compatibility Kit (TCK) |
17 |
| -- [r2dbc-client](https://github.com/r2dbc/r2dbc-client) |
18 |
| -- Drivers: |
19 |
| - - [r2dbc-h2](https://github.com/r2dbc/r2dbc-h2) |
20 |
| - - [r2dbc-postgresql](https://github.com/r2dbc/r2dbc-postgresql) |
21 |
| - - [r2dbc-mssql](https://github.com/r2dbc/r2dbc-mssql) |
22 |
| - - [r2dbc-over-adba](https://github.com/r2dbc/r2dbc-over-adba) |
23 |
| -- [r2dbc.github.io](https://github.com/r2dbc/r2dbc.github.io) |
24 |
| -- Examples: |
25 |
| - - [r2dbc-postgresql example](https://github.com/r2dbc/r2dbc-postgresql/blob/master/src/test/java/io/r2dbc/postgresql/PostgresqlExample.java) |
26 |
| - |
27 |
| -## 2. [spring-data-r2dbc] |
28 |
| - |
29 |
| -- [spring-data-r2dbc](https://github.com/spring-projects/spring-data-r2dbc) |
30 |
| -- [spring-data-jdbc/spring-data-relational](https://github.com/spring-projects/spring-data-jdbc/tree/master/spring-data-relational) |
31 |
| -- Examples: |
32 |
| - - [spring-data-examples/r2dbc](https://github.com/spring-projects/spring-data-examples/tree/master/r2dbc) |
33 |
| - |
34 |
| -## 3. Release Packages |
35 |
| - |
36 |
| -| Date | Name | Version | Description |
37 |
| -|----------------|---------------------------|--------------|------------- |
38 |
| -| **2018-12-12** | spring-data-r2dbc | **1.0.0.M1** | [link](https://repo.spring.io/milestone/org/springframework/data/spring-data-r2dbc/1.0.0.M1/) |
39 |
| -| **2018-11-19** | io.r2dbc:r2dbc-spi | **1.0.0.M6** | ↑ [released](https://r2dbc.io/2018/11/19/r2dbc-1-0-milestone-6-released) |
40 |
| -| 2018-11-19 | io.r2dbc:r2dbc-spi | 1.0.0.M6 | ↑ |
41 |
| -| 2018-11-19 | io.r2dbc:r2dbc-client | 1.0.0.M6 | ↑ |
42 |
| -| 2018-11-19 | io.r2dbc:r2dbc-postgresql | 1.0.0.M6 | ↑ |
43 |
| -| 2018-11-19 | io.r2dbc:r2dbc-h2 | 1.0.0.M6 | + new driver |
44 |
| -| 2018-11-19 | io.r2dbc:r2dbc-mssql | 1.0.0.M6 | + new driver |
45 |
| -| **2018-09-24** | io.r2dbc:r2dbc-spi | **1.0.0.M5** | ↑ |
46 |
| -| 2018-09-24 | io.r2dbc:r2dbc-client | 1.0.0.M5 | ↑ |
47 |
| -| 2018-09-24 | io.r2dbc:r2dbc-postgresql | 1.0.0.M5 | ↑ |
48 |
| - |
49 |
| -## 4. Maven Repositories |
50 |
| - |
51 |
| -- <https://repo.spring.io/milestone/io/r2dbc> |
52 |
| -- <https://repo.spring.io/milestone/org/springframework/data> |
53 |
| -- <https://repo.spring.io/snapshot/org/springframework/data/spring-data-r2dbc> |
54 |
| -- <https://repo.spring.io/snapshot/org/springframework/data/spring-data-jdbc> |
55 |
| - |
56 |
| -## 5. Ref |
57 |
| - |
58 |
| -- 2018-12-19 spring blog : [Spring Tips: Reactive SQL Data Access with Spring Data R2DBC](https://spring.io/blog/2018/12/19/spring-tips-reactive-sql-data-access-with-spring-data-r2dbc) |
59 |
| -- 2018-12-12 spring blog : [Spring Data R2DBC 1.0 M1 released](https://spring.io/blog/2018/12/12/spring-data-r2dbc-1-0-m1-released) |
60 |
| -- 2018-10-01 infoQ : [Experimental Reactive Relational Database Connectivity Driver, R2DBC, Announced at SpringOne](https://www.infoq.com/news/2018/10/springone-r2dbc) |
61 |
| -- 2018-09-27 spring blog : [The Reactive Revolution at SpringOne Platform 2018 (part 1/N)](https://spring.io/blog/2018/09/27/the-reactive-revolution-at-springone-platform-2018-part-1-n) |
62 |
| -- spring-guides : [Accessing Relational Data using JDBC with Spring](https://spring.io/guides/gs/relational-data-access/) |
| 9 | +- [spring-data-r2dbc/issue49](https://github.com/spring-projects/spring-data-r2dbc/issues/49) |
63 | 10 |
|
64 | 11 |
|
65 | 12 | [R2DBC]: https://r2dbc.io
|
|
0 commit comments