No video

Spring Boot Microservices Tutorial - Part 2 - Order Service

  Рет қаралды 8,202

Programming Techie

Programming Techie

Күн бұрын

Пікірлер: 36
@Shil131
@Shil131 Ай бұрын
Many Many and Many Thanks for posting this playlist ! ☺
@hrsatsangi
@hrsatsangi 4 ай бұрын
Please sir Font ko thoda Bigger rakhiye Because of while we are working together with split screen there is a problem to read the text 😢😢
@elizabethr5161
@elizabethr5161 Ай бұрын
awesome video, learned a lot.
@user-ql4nt3te6r
@user-ql4nt3te6r 4 ай бұрын
excited fo playlist
@nailtagiyev6340
@nailtagiyev6340 4 ай бұрын
Thank you, brother
@paulsingh11
@paulsingh11 Ай бұрын
Is UML still used in practice?
@champ853
@champ853 2 ай бұрын
Just a heads up for anyone doing this video. I am using the open source version of Intellij IDEA and am unable to create sql files. It just shows as a regular file so when I run OrderServiceApplication it doesn't migrate to version V1
@champ853
@champ853 2 ай бұрын
I was able to bypass but making a script in mysql workbench to create t_orders table CREATE TABLE order_service.t_orders ( id INT AUTO_INCREMENT PRIMARY KEY, order_number VARCHAR(255) NOT NULL, price DECIMAL(10, 2) NOT NULL, quantity INT NOT NULL, sku_code VARCHAR(255) NOT NULL );
@keyingxu6738
@keyingxu6738 2 ай бұрын
I had to remove the record in flyway_schema_history, and rerun the application with following sql: CREATE TABLE order_service.t_orders ( id INT AUTO_INCREMENT not null PRIMARY KEY, order_number VARCHAR(255) default null, price DECIMAL(10, 2), quantity INT, sku_code VARCHAR(255) );
@priyansusahoo
@priyansusahoo 3 ай бұрын
Hi Sai, I'm facing some problem related to creating the order_service container, it's throwing this error: \order-service>docker compose up -d [+] Running 0/2 - Network order-service_default Created 0.2s - Container mysql Starting 0.2s Error response from daemon: Ports are not available: exposing port TCP 0.0.0.0:3306 -> 0.0.0.0:0: listen tcp 0.0.0.0:3306: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted. Could you help me fix this error.
@anotherOne12342
@anotherOne12342 3 ай бұрын
You might have an instance already running on this port. Therefore either close the instance that is running on the port or just change the port by changing the docker-compose.yml ports to -"3307:3306"
@priyansusahoo
@priyansusahoo 3 ай бұрын
@@anotherOne12342 thank you
@niteshupadhyay4680
@niteshupadhyay4680 3 ай бұрын
Any one getting this error "Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'flywayInitializer' defined in class path resource [org/springframework/boot/autoconfigure/flyway/FlywayAutoConfiguration$FlywayConfiguration.class]: Validate failed: Migrations have failed validation Detected failed migration to version 1 (init). Please remove any half-completed changes then run repair to fix the schema history." then drop flyway history table from your schema and then re run your program now everything will work fine
@Uttkarsh_8
@Uttkarsh_8 2 ай бұрын
did you find a workaround??
@saurabhvishwakarma3066
@saurabhvishwakarma3066 2 ай бұрын
@@Uttkarsh_8 follow these steps 1) Goto to workbench and drop the table named flyway_schema_history 2) Change the migration script to this CREATE TABLE IF NOT EXISTS `t_orders` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT, `order_number` VARCHAR(255) DEFAULT NULL, `sku_code` VARCHAR(255), `price` DECIMAL(19,2), `quantity` INT(11), PRIMARY KEY (`id`) ); now rerun the application. if still any error is coming the change the mySql version 8.1.0 in docker-compose.yml file i.e. image: mysql:8.1.0 if still problem is not solved then chhod do 🤣🤣🤣🤣🤣🤣
@imsairaj5160
@imsairaj5160 16 күн бұрын
your suggestion helped me alot, thanks bud
@ChandanNayak-lq1pd
@ChandanNayak-lq1pd 4 ай бұрын
Sir,are you releasing the course today?
@bhavyanth.kondapalli
@bhavyanth.kondapalli 3 ай бұрын
Hello, instead of we downloading the MySQL workbench to connect to local databases, we can use the built in database tool in IntelliJ right? It's in the same location where we run the maven commands. It allows us to connect to most of the available databases just by downloading the required drivers.
@Sebastian-zs8cp
@Sebastian-zs8cp 4 ай бұрын
Why you don't use the dbname in docker-compose in feld MYSQL_DATABASE 2:15 and named there and save great new file? thx
@ProgrammingTechie
@ProgrammingTechie 4 ай бұрын
Yes this is also an option, you can follow it.
@asrarahmad7671
@asrarahmad7671 2 ай бұрын
Make it zoom in
@howsusisthis
@howsusisthis 3 ай бұрын
My 'order-service' scheme is not being created. I deleted the mysql folder mentioned in volumes and tried again a couple of times.
@shouryakhujneri5132
@shouryakhujneri5132 2 ай бұрын
I am experiencing a similar issue. did you manage to fix it ?
@samirkumarram5402
@samirkumarram5402 2 ай бұрын
try to write the db name in double quote
@vind190
@vind190 2 ай бұрын
+1, I tried but still having the issue. How to fix it?
@sandeepraparthi4768
@sandeepraparthi4768 12 күн бұрын
May be you dint delete the mysql folder in docker directory
@shobhitsolanki8717
@shobhitsolanki8717 4 ай бұрын
Sir, Series poori hone m kitna time lgega. I am following along actually 6 din m pichla sara bhul gya
@ProgrammingTechie
@ProgrammingTechie 4 ай бұрын
Aur 2 weeks lagega, poora episodes release hone ke bad dekho course. I can only release 2 videos per week.
@pradeepravi9608
@pradeepravi9608 4 ай бұрын
Sir git link?
@ProgrammingTechie
@ProgrammingTechie 4 ай бұрын
github.com/SaiUpadhyayula/spring-boot-microservices/tree/initial-setup
@ProgrammingTechie
@ProgrammingTechie 4 ай бұрын
The source code will be updated for each part
@rishiraj2548
@rishiraj2548 4 ай бұрын
🙂🙂👍
Spring Boot Microservices Tutorial - Part 3 - Inventory Service
15:42
Programming Techie
Рет қаралды 5 М.
Top 25 Microservice Interview Questions Answered - Java Brains
39:54
الذرة أنقذت حياتي🌽😱
00:27
Cool Tool SHORTS Arabic
Рет қаралды 6 МЛН
Fast and Furious: New Zealand 🚗
00:29
How Ridiculous
Рет қаралды 49 МЛН
Harley Quinn lost the Joker forever!!!#Harley Quinn #joker
00:19
Harley Quinn with the Joker
Рет қаралды 28 МЛН
Logo Matching Challenge with Alfredo Larin Family! 👍
00:36
BigSchool
Рет қаралды 19 МЛН
How This New Battery is Changing the Game
12:07
Undecided with Matt Ferrell
Рет қаралды 89 М.
Spring Boot APIs Gateway in 20 Minutes
22:50
The IT Wizard
Рет қаралды 10 М.
API Gateway | Microservice
11:48
Telusko
Рет қаралды 71 М.
Building an API Gateway in Java with Spring Cloud Gateway
23:01
Microservices using SpringBoot 3.0 | Full Example [NEW]
1:25:38
Daily Code Buffer
Рет қаралды 179 М.
Why UK 🇬🇧 is going Bankrupt? : Detailed Economic Case Study
20:37
Think School
Рет қаралды 1,4 МЛН
Microservices using SpringBoot | Full Example
1:21:39
Daily Code Buffer
Рет қаралды 1 МЛН
الذرة أنقذت حياتي🌽😱
00:27
Cool Tool SHORTS Arabic
Рет қаралды 6 МЛН