Code Monkey home page Code Monkey logo

spring-reactive-samples's Introduction

Spring-reactive-samples

  1. reactor-debugging-demo dir - sample debugging tools from the talk Do’s and Don’ts: Avoiding First-Time Reactive Programmer Mines

  2. accesing-data-r2dbc dir - spring guide demo of r2dbc. Does not entirely run as schema.sql requires jdbc drivers not bundled in this starter

  3. reactive-mysql-with-jasync-and-r2dbc dir - Mysql Jasync r2dbc from the video Spring Tips: Reactive MySQL with Jasync SQL and R2DBC Original code

    $ docker run --name=orders-mysqldb -d -p 3306:3306 -e MYSQL_ROOT_HOST=% -e MYSQL_ROOT_PASSWORD=root -e MYSQL_USER=orders -e MYSQL_PASSWORD=orders -e MYSQL_DATABASE=orders mysql/mysql-server:5.7.24
    $ docker exec -it orders-mysqldb bash
    bash-4.2# mysql -u orders -h 127.0.0.1 -p orders
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | orders             |
    +--------------------+
    2 rows in set (0.00 sec)
    mysql> use orders;
    mysql> create table orders (id bigint(20) AUTO_INCREMENT, fn varchar(255) NOT NULL, PRIMARY KEY (id));
    mysql> show tables;
    +------------------+
    | Tables_in_orders |
    +------------------+
    | orders           |
    +------------------+
    1 row in set (0.00 sec)
    mysql> describe orders;
    +-------+--------------+------+-----+---------+----------------+
    | Field | Type         | Null | Key | Default | Extra          |
    +-------+--------------+------+-----+---------+----------------+
    | id    | bigint(20)   | NO   | PRI | NULL    | auto_increment |
    | fn    | varchar(255) | NO   |     | NULL    |                |
    +-------+--------------+------+-----+---------+----------------+
    2 rows in set (0.00 sec)
    mysql> insert into orders values(1, "John");
    mysql> insert into orders values (2, "adam");
    

    Failing for now

  4. stock-service and stock-client dirs - Tutorial: Reactive Spring Boot Reactive Kotlin and RSocket

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.