04:59 Hướng dẫn này nói về việc tích hợp Spring Cloud Eureka, Spring Cloud Gateway và Spring Cloud Hystrix trong kiến trúc vi dịch vụ. 09:58 Tạo microservice bằng Spring Cloud và các phần phụ thuộc liên quan 14:57 Tạo cấu trúc microservice thanh toán 19:56 Tạo dịch vụ thanh toán và đặt hàng, chạy chúng trên các cổng khác nhau 24:55 Ánh xạ đơn hàng và thanh toán trong kiến trúc microservice 29:54 Tạo các lớp yêu cầu và phản hồi giao dịch để xử lý các đối tượng đặt hàng và thanh toán riêng biệt. 34:53 Sử dụng template.PostForObject để thực hiện yêu cầu POST và nhận phản hồi 39:48 Thể hiện sự tích hợp đơn hàng và thanh toán bằng mã giả Crafted by Merlin AI.
Hello Java Techie. Thank you so much for the good works. You made have a better understanding of Spring boot, validation, exception handling, SOLID approach and much more. Now on micro services using spring boot. Please apply this apply to Saas application. I’ve followed all your series on micro services using spring boot. Thank you
Hi Sir, Thanks for your videos. The way how you are explaining the sessions is very simple and pretty straight with the examples. these videos are very helpful to get knowledge on these. Please continue the same.
I like your teaching style. Clear, straight forward and no bullshitting theory ppts. But I didn't find anything on security. I mean if someone knows our server with some endpoints somehow, we need to stop him at routing stage. Its possible right!?.
Thanks Mohan , Yes we need to go for security in api gateway itself which I didn't cover yet . But am planning to back to microservice series again once I finish AWS . So please do coperate .
Thanks for providing simplest way to explain. Please add basic core java videos. we are excepting all concept in core java. Thanks in advance. I am not finding any core java concept except java 8 and interview questions. Please all topics in core java. It;s help to learn more basic concept in clearcut.
Thank you very very much for sharing and helping us learn new tech, this is the technology which I am currently working in my project and this was very helpful.. please try to also integrate centralized logging in your next tutorial... Also if possible please make a video on ELK integration for the same. .which takes logs from the centralized system and can be viewed on kibana for various business insights.. thanks...
Hello Java Techie I really want to say that from the bottom of my heart, I am grateful for your tutorials. To me, this is one of the best channels for Java learning. I would like to know if you could create a course series with these list of technologies: MySQL, Spring JPA, Spring Security, Angular, JWT, Swagger, and Jenkins pipeline, Docker, Artifactory, Testing JUnit, and deployment. This can be a school app where students enroll for classes, and teachers are able to approve enrollment and give grades. I know this is not an easy task, so I would love to donate $300 to help kickstart this project.
Hi Samuel , Glad to hear this from you that people like you learning new concepts from java techie I already covered All the content individually which you mentioned above . But no worries I will try to start one mini project series with free of cost (no money💰 please 🙏 ) I would like to know project architecture else if you could explain functionality then I can start this project . Once again thank you for your word Share project architecture in below email javatechie4u@gmail.com
Hi javaTechie - found 1 Defect. In order service we have primary key as order id which is auto generated when we hit DB. And when storing something in payment object to send a request to payment service we are storing order id in payment object. Here we are storing this order id from order object which is currently initialized to default value as 0 , so in payment object the order id is always stored as 0 only. But where as in Order table it will be auto incremented. Even if we give order id in order request object that order id will be sent to payment object and in Order table the auto increment value will be stored. So, here the Order id is stored correctly as incremental but the payment id is based on the request if we pass id then that id will be there other wise default value of 0 will be there. So , how to pass the next order id value to payment object which is going to assign for next order record ? is making db call to get next value is the only solution ? os is this recomended. Please suggest - very confued with this. Please do more videos by clubbing all tools in 1 project which makes it a real time project in learning phase itself. ❤
I see Spring Cloud Eureka + API Gateway + Spring Cloud Hystrix we are getting similar tutorials every but we are not getting how to deploy this stuff in aws with dockerize or how we deploy this stuff in cloud relatime could you please post that tutorial it would be nice. i.e spring cloud app deployment
Thanks for your help, I have one more query all classes like dispatcher servlet and @controller , @component , @service and @repository are by default all these classes are singleton right, so how these singleton classes serve in multithread environment?
@@Javatechie actually this one of my interview question, like in spring Disparcherservelet is single tone so how it will handle multiple requests at a time? similarly @controllers and @service are also singleton right so can you tell me how those classes will handle multiple requests at a time?
Hi, This is my humble request to you, if you can make a complete tutorial on Microservices using AWS SQS & Firebase. UseCase can be like, 2 or 3 services or systems generating or publishing messages and the main management system is consuming that and publish those to Firebase. I will be highly obliged if you can make a tutorial for this. Hoping for your reply.
If there are multiple instances of backend service set up at different geographical locations, how to make gateway choose the nearest server to handle the request? eg: user is accessing AIP from New York, servers are in New York and India, then how to make sure preference is given to New York server?
As far i know there is no concept of a distinguished server based on the basics of the country usually what happens if you use any cloud infrastructure usually it will provide you 2 different regions for example South Central and north us or etc . So when you request land to your gateway then cloud load balancer will take the responsibility to route your request to available instance and this load balance configuration should be written by devops engineer
how we can develop multi module project using these microservice series or can we follow which is you teach us normal spring boot application structure.
Your videos are very awesome, cleared all the doubt about API gate way . I want to implement api gateway with jwt microservice(auth). how can we integrate that with api gateway and call other services as well . Please help as soon as possible , Thanks in advance .
@@Javatechie can we try it with zuul , i didn't get 100% success but i am half way . I have created 1 Service called auth which has jwt and added zuul to the same service but when i call from react ui it gives 403 and now i am getting 500 . So i think we can use jwt and zuul together as authentication api gateway . Please help if anything you can do on this .
No we shouldn't do like this.its good to have multi module project . create a common module then add all your dto which is being used in multiple place then just reuse it .
Hi sir, Thank you for this video, it was very helpful. But if we want to deploy this application on AWS cloud then do we need Spring cloud eureka and api gateway. API gateway we can use of AWS but is there any option where we can replace the eureka also with any of the AWS service. Thanks
Sir first of all thanks for the videos, just recent i got the question suppose in my micro services redis is used but tomorrow i want to use some other cache tool so without changing implementation code how can go for it so none of the micro services affected or no any changes in code. Can you explain this scenario.
Yes exactly , for demo purpose to show actual association mapping I did this . Simple change required . Do the payment api call , then get the transaction id and set into order object then save it in order repository
Saroj also we can map order id in payment service because this information is specify to product to track payment history by order id This order id won't be store in payment gateway application which is 3rd party one
How to implement auth service (separate microservice) with the gateway and verify the user and only after successful verification user can call other microservice endpoints? Thanks. It would be nice if you make a video on this or guide me how to do it.
Hi Basanth... Here u r running two servers in two different windows (as per service) of Intellige idea, can we do this in STS as well. I have tried in STS, and I have opened order-services and payment-services in two diff windows, when I started d server same console is showing in both windows(Payment&order) Thanks in Advance
hi java techie, i see Spring Cloud Hystrix in spring initializer is in "Maintenance" mode, is that mean that library is going deprecated in near future?
@@Javatechie thank u java techie, will u make tutorial about Spring Cloud Gateway, Spring Security, Resilence 4j, and Spring Cloud Loadbalancer in one project like this one?
How can I enable Spring Initializr? I have CE and I couldn't use it, and also when I want to run a springboot application I need to use mvn as a runner, I couldn't use springboot runner, could you help us with this ? Thanks :)
Hello sir....how to limit microservice accessible via api gateway only ....means if i register api gateway with Eureka then my all microservices should accessible via only api gateway...not outside gateway
All I did like you did But there is empty response on the post for both my services . What will be the problem??? I used elcilpse as my ide & Installed h2 database
Hi, Can u please confirm what plugin using to get the application.properities auto-complete suggestions. as of now, I'm using the IntelliJ community edition. while properties I did get any auto complete suggestions. Can u please help me?
Good evening sir. I have one doubt. How can we create microservice project using spring which is separate Api application or multi module. Which is better to create microservice application.
It depends on the need if your each application plays a different role then use microservice architecture if it's dependent then use multi module project
Hello. where did configure about h2 database. I am able access console but every time when application started need to change url jdbc:h2:mem:fa839fef-9f86-45a2-9855-fc6a70c12740 on browser
How do we manage transaction across micro services ! Suppose While placing the order I want to check if the item is available or not in stock By calling Stock Micro-service and If Stock is available then I want to proceed for payment
Hi Saroj as per your requirement I don't think here transaction required Simply you will get item is exist or not after rest API call to stock microservice Here you can filter this out , if jot exist then return response NOT_EXIST if yes then process simple validation required But yes still in some complex scenario still people are using transaction using 2 pc committee and saga
i am getting (com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server) can u help me to solve the problem sir. what type of Exception it is.
Hlo sir i have created the project with 2 services these services are accessed by gateway . for i used eruka server + spring cloud gateway + service discovery. When i call api-gateway from my javascript code i encounter CORS policy error. How to solve this Sir tell me solution or Any suggested video please let me know
Hi sir, @Javatechie i gave an interview on this Friday, they asked about authentication and I was telling my approach to him, he said that we use to store passwords in DB for authentication 7-8 years ago , now we don't store users passwords in db even in encrypted form . How is this possible how to check for valid password then ? Can you suggest me some topic or video I can go through ? IF OF ANY USE :- I told him that we first verify the user and encript the password obtained from the user with the salt in DB and then match with the dp encrypted password , if success then he gets a token from token service and using that token he can access our API by using it as bearer token .
04:59 Hướng dẫn này nói về việc tích hợp Spring Cloud Eureka, Spring Cloud Gateway và Spring Cloud Hystrix trong kiến trúc vi dịch vụ.
09:58 Tạo microservice bằng Spring Cloud và các phần phụ thuộc liên quan
14:57 Tạo cấu trúc microservice thanh toán
19:56 Tạo dịch vụ thanh toán và đặt hàng, chạy chúng trên các cổng khác nhau
24:55 Ánh xạ đơn hàng và thanh toán trong kiến trúc microservice
29:54 Tạo các lớp yêu cầu và phản hồi giao dịch để xử lý các đối tượng đặt hàng và thanh toán riêng biệt.
34:53 Sử dụng template.PostForObject để thực hiện yêu cầu POST và nhận phản hồi
39:48 Thể hiện sự tích hợp đơn hàng và thanh toán bằng mã giả
Crafted by Merlin AI.
MOST VALUABLE LECTURES ............GREAT STUFFF!!!!,PLEASE ADD MORE TOPICS OF YOUR CHOICE.............
My Favorite technical session ever.
Hello Java Techie. Thank you so much for the good works. You made have a better understanding of Spring boot, validation, exception handling, SOLID approach and much more. Now on micro services using spring boot.
Please apply this apply to Saas application. I’ve followed all your series on micro services using spring boot.
Thank you
This channel is blessing for us. Would love to see if you can create a separate series on multithreading.
Will do that
Nice video ...a watch almost your all videos plz keep all microservices video it's very helpful
Sir, I thank you very much for all the videos uploaded that helped me very much for understanding concepts with your clear explanation with examples.
Thanks Kiran 😊
Hi Sir, Thanks for your videos. The way how you are explaining the sessions is very simple and pretty straight with the examples. these videos are very helpful to get knowledge on these. Please continue the same.
Thanks guru 🤠. Please checkout complete playlist i believe you will enjoy it 😊
Please include docker and kubernetes for microservice
Thank you for providing valuable information sir 🙏🙏🙏
Thank you sir for your video ...it is helped me alot to understand microservices
I like your teaching style. Clear, straight forward and no bullshitting theory ppts.
But I didn't find anything on security.
I mean if someone knows our server with some endpoints somehow, we need to stop him at routing stage. Its possible right!?.
Thanks Mohan ,
Yes we need to go for security in api gateway itself which I didn't cover yet .
But am planning to back to microservice series again once I finish AWS .
So please do coperate .
This tutorial is very crisp and delivered to the point. Thank you👍
T
Grete content. Thanks a lot.
Please add few more videos to manage transactions in microservices.
Like Saga, CQRS and event sourcing design patterns.
Thanks for providing simplest way to explain. Please add basic core java videos. we are excepting all concept in core java. Thanks in advance. I am not finding any core java concept except java 8 and interview questions. Please all topics in core java. It;s help to learn more basic concept in clearcut.
Superb explaination
Thank you very very much for sharing and helping us learn new tech, this is the technology which I am currently working in my project and this was very helpful.. please try to also integrate centralized logging in your next tutorial... Also if possible please make a video on ELK integration for the same. .which takes logs from the centralized system and can be viewed on kibana for various business insights.. thanks...
I will
Thank you very much Sir.
So much Clarity, Thank you so much...Waiting for Part-2
Hello Java Techie I really want to say that from the bottom of my heart, I am grateful for your tutorials. To me, this is one of the best channels for Java learning.
I would like to know if you could create a course series with these list of technologies:
MySQL, Spring JPA, Spring Security, Angular, JWT, Swagger, and Jenkins pipeline, Docker, Artifactory, Testing JUnit, and deployment.
This can be a school app where students enroll for classes, and teachers are able to approve enrollment and give grades. I know this is not an easy task, so I would love to donate $300 to help kickstart this project.
Hi Samuel ,
Glad to hear this from you that people like you learning new concepts from java techie
I already covered All the content individually which you mentioned above .
But no worries I will try to start one mini project series with free of cost (no money💰 please 🙏 )
I would like to know project architecture else if you could explain functionality then I can start this project .
Once again thank you for your word
Share project architecture in below email
javatechie4u@gmail.com
@@Javatechie You are the greatest.
@@samuelademola1600 cool
Verh nice ❤
Good explanation
Awesome learning, excellent content.
You are great sir... helping us to learn spring boot
Excellent explanation
Nice Explained..and thanks
Hi javaTechie - found 1 Defect.
In order service we have primary key as order id which is auto generated when we hit DB. And when storing something in payment object to send a request to payment service we are storing order id in payment object. Here we are storing this order id from order object which is currently initialized to default value as 0 , so in payment object the order id is always stored as 0 only. But where as in Order table it will be auto incremented.
Even if we give order id in order request object that order id will be sent to payment object and in Order table the auto increment value will be stored.
So, here the Order id is stored correctly as incremental but the payment id is based on the request if we pass id then that id will be there other wise default value of 0 will be there.
So , how to pass the next order id value to payment object which is going to assign for next order record ? is making db call to get next value is the only solution ? os is this recomended.
Please suggest - very confued with this. Please do more videos by clubbing all tools in 1 project which makes it a real time project in learning phase itself. ❤
very nice
Amazing stuff sir. crisp and to the point. Thanks :)
Thanks a lot .So clarity in solution of one of basic problem /challenge in micro service.Keep it up
Thank you for sharing such great content.
Great stuff bro
I see Spring Cloud Eureka + API Gateway + Spring Cloud Hystrix we are getting similar tutorials every but we are not getting how to deploy this stuff in aws with dockerize or how we deploy this stuff in cloud relatime could you please post that tutorial it would be nice. i.e spring cloud app deployment
Awesome Tutorial.
Hi Basant.. Where do you have a separate video for Cloud Gateway ? Pls let me know
Thank you sharing; it was great!
Thank you so much.It was a great explanation. Request you to help us on saga design pattern and how it can be implemented in microservices
Is is compulsory to make different package in order and payment or we directly create class?
And thanks for the tutorials they are very helpful....
Its good to follow coding convention .
Very good video 👍👍
Thanks Neha
spring.datasource.url=jdbc:h2:mem:testdb
add this in properties file if you are facing any issue logging into h2 console
What is the error you are getting
so clear.. thanks alot
please add centralized distributed logging to the application.
Yes I will add
Great ❤️
thank you
Thanks for sharing such a valuable content bro
Thanks for great tutorials, could you please implement the distributed transaction using Saga?
Can you please do this microservices video with latest version of Spring 3X
Yes I will do that
Thanks for your help, I have one more query all classes like dispatcher servlet and @controller , @component , @service and @repository are by default all these classes are singleton right, so how these singleton classes serve in multithread environment?
How singleton impact multithreading ?
@@Javatechie actually this one of my interview question, like in spring Disparcherservelet is single tone so how it will handle multiple requests at a time? similarly @controllers and @service are also singleton right so can you tell me how those classes will handle multiple requests at a time?
Each request create separate thread and get the bean and execute logic also it depends if you didn't use async approach flow will be synchronous only
Hi,
This is my humble request to you, if you can make a complete tutorial on Microservices using AWS SQS & Firebase.
UseCase can be like, 2 or 3 services or systems generating or publishing messages and the main management system is consuming that and publish those to Firebase.
I will be highly obliged if you can make a tutorial for this.
Hoping for your reply.
Thank you so much, It was a great explanation. May I know which design pattern used to implement microservices?
Gateway , circuit breaker
If there are multiple instances of backend service set up at different geographical locations, how to make gateway choose the nearest server to handle the request?
eg: user is accessing AIP from New York, servers are in New York and India, then how to make sure preference is given to New York server?
As far i know there is no concept of a distinguished server based on the basics of the country usually what happens if you use any cloud infrastructure usually it will provide you 2 different regions for example South Central and north us or etc .
So when you request land to your gateway then cloud load balancer will take the responsibility to route your request to available instance and this load balance configuration should be written by devops engineer
Which plugin is required for YAML Autocomplete? and is it available in community edition as well
Spring assistant in intellij idea 💡
how we can develop multi module project using these microservice series or can we follow which is you teach us normal spring boot application structure.
Yes absolutely you can follow that
Your videos are very awesome, cleared all the doubt about API gate way .
I want to implement api gateway with jwt microservice(auth).
how can we integrate that with api gateway and call other services as well . Please help as soon as possible ,
Thanks in advance .
I tried it but didn't get success , I will check again and update you
@@Javatechie can we try it with zuul , i didn't get 100% success but i am half way .
I have created 1 Service called auth which has jwt and added zuul to the same service but when i call from react ui it gives 403 and now i am getting 500 . So i think we can use jwt and zuul together as authentication api gateway . Please help if anything you can do on this .
Sure let me think if we can
have you figured out any solution?
So I need to create same model classes like Payment in multiple microservices right If I want to invoke payment services
No we shouldn't do like this.its good to have multi module project . create a common module then add all your dto which is being used in multiple place then just reuse it .
Hi sir, Thank you for this video, it was very helpful. But if we want to deploy this application on AWS cloud then do we need Spring cloud eureka and api gateway. API gateway we can use of AWS but is there any option where we can replace the eureka also with any of the AWS service.
Thanks
Sir first of all thanks for the videos, just recent i got the question suppose in my micro services redis is used but tomorrow i want to use some other cache tool so without changing implementation code how can go for it so none of the micro services affected or no any changes in code. Can you explain this scenario.
Use profile concept
Thanks alot .
I really enjoyed video .
I seen this a 2 hours tutorial. Did you also implement security of microservices?
I could not find anywhere on youtube where they shown how to secure spri gboot microservices
Thanks . great help
Hello, just one query.. why we did not use objectmapper while posting payment object in rest call? Thanks in advance..
thanks
One more thing I think order table should have the info related to payment not the vice versa
Yes exactly , for demo purpose to show actual association mapping I did this .
Simple change required .
Do the payment api call , then get the transaction id and set into order object then save it in order repository
Saroj also we can map order id in payment service because this information is specify to product to track payment history by order id
This order id won't be store in payment gateway application which is 3rd party one
How to implement auth service (separate microservice) with the gateway and verify the user and only after successful verification user can call other microservice endpoints? Thanks. It would be nice if you make a video on this or guide me how to do it.
Thank you, sir, great video. I'm doing a project on jersey microservices, can I do the same implementation for that as well?
Yes you can
Hi Basanth... Here u r running two servers in two different windows (as per service) of Intellige idea, can we do this in STS as well. I have tried in STS, and I have opened order-services and payment-services in two diff windows, when I started d server same console is showing in both windows(Payment&order)
Thanks in Advance
STS i don't think we can do it
Why we haven't removed the eureka client config from config server? will it not pull from cloud config server configurations ?
Yes it will missed to remove it . You can try that
May we expert OAuth security ASAP....? 😊
hi java techie, i see Spring Cloud Hystrix in spring initializer is in "Maintenance" mode, is that mean that library is going deprecated in near future?
Yup it's already deprecated .so you can go for Resilience 4j
@@Javatechie thank u java techie, will u make tutorial about Spring Cloud Gateway, Spring Security, Resilence 4j, and Spring Cloud Loadbalancer in one project like this one?
@@Javatechie *as the replacement of Netflix stuff that going to be deprecated
Nice content bro😄
Thanks for the video, I would like to know if you are using IntelliJ ultimate or CE?
CE
How can I enable Spring Initializr? I have CE and I couldn't use it, and also when I want to run a springboot application I need to use mvn as a runner, I couldn't use springboot runner, could you help us with this ? Thanks :)
Can we Deploy spring cloud eureka service , spring cloud api gateway and spring cloud config server on aws EKS cluster ?
Yes we can expect Eureka server
Hello sir....how to limit microservice accessible via api gateway only ....means if i register api gateway with Eureka then my all microservices should accessible via only api gateway...not outside gateway
Thanks sir
Sir, What changes do we need to make in payment processing method to return data from third party payments like paytm
Do the payment integration implementation
All I did like you did But there is empty response on the post for both my services . What will be the problem???
I used elcilpse as my ide & Installed h2 database
You need to configure Lombok in your IDE
Hi, Can u please confirm what plugin using to get the application.properities auto-complete suggestions. as of now, I'm using the IntelliJ community edition. while properties I did get any auto complete suggestions. Can u please help me?
thank you so much ..
how we can manage transactions across multiple microservices, i have not been able to fine example in springboot
How do we work with distributed transactions in spring boot microservices
I don't why the beginners like me can't find simple videos
Everyone is writing big big codes😑
Good evening sir. I have one doubt. How can we create microservice project using spring which is separate Api application or multi module.
Which is better to create microservice application.
It depends on the need if your each application plays a different role then use microservice architecture if it's dependent then use multi module project
Sir, How to handle rollback of transactions across microservices if there is a failure.
Hi Sir,
After building the basic methods I was just checking whether postman finds my resource or not, I am constantly getting 404. Any insights?
you might giving wrong url subhra
Hello. where did configure about h2 database. I am able access console but every time when application started need to change url jdbc:h2:mem:fa839fef-9f86-45a2-9855-fc6a70c12740 on browser
In latest version you need to use datadourse attribute in properties file
16:19. &. 18:05
How do we manage transaction across micro services ! Suppose While placing the order I want to check if the item is available or not in stock By calling Stock Micro-service and If Stock is available then I want to proceed for payment
Hi Saroj as per your requirement I don't think here transaction required
Simply you will get item is exist or not after rest API call to stock microservice
Here you can filter this out , if jot exist then return response NOT_EXIST if yes then process simple validation required
But yes still in some complex scenario still people are using transaction using 2 pc committee and saga
@@Javatechie But Suppose Inventory is a separate microservice , how do we proceed , We may have to go for Saga
Yes correct
HI Sir,
Can you please share the the whole code git link , the link that is provided only has the config -seerver code
Each video has its corresponding GitHub please check the description of each
i am getting (com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server)
can u help me to solve the problem sir. what type of Exception it is.
Brother, please add the content for email , sending and verification. I'm waiting for this.
Hlo sir i have created the project with 2 services these services are accessed by gateway . for i used eruka server + spring cloud gateway + service discovery. When i call api-gateway from my javascript code i encounter CORS policy error.
How to solve this
Sir tell me solution or Any suggested video please let me know
You need to enable @CrossOrigin("*") in gateway
Hi sir, @Javatechie i gave an interview on this Friday, they asked about authentication and I was telling my approach to him, he said that we use to store passwords in DB for authentication 7-8 years ago , now we don't store users passwords in db even in encrypted form . How is this possible how to check for valid password then ? Can you suggest me some topic or video I can go through ?
IF OF ANY USE :- I told him that we first verify the user and encript the password obtained from the user with the salt in DB and then match with the dp encrypted password , if success then he gets a token from token service and using that token he can access our API by using it as bearer token .
He is expecting Oauth mechanism from you
Hi,
I would like to Implement API gateway + Jwt Authentication.
I'm using spring cloud API gateway
Can you suggest how to Implement
I will cover this don't worry
Java Techie thanks
I’ve implemented api gateway and jwt seperately but when I implement them together then it’s not working
It should work , you might missing something but give me some time soon I will cover that
@@Javatechie
Hi,
May I know when will you cover the API gateway with OAuth authentication (or any) topic?
35:22 TransactionResqest is sending null order and null payment what wo do now?
Pl please configure Lombok in your IDE
@@Javatechie now working thanks....
unable to access secondary h2-db of payment service
What is the error
@@Javatechie Its saying white label error page.......when i m typing localhost:portno /h2-console
in sts i a,m unable to see the restcontroller,requestmapping anotatons
can any one help me to find
Thank you very much..Can you please integrate JWT authentication mechanism on this series
I'm able to access the h2 database console, but the database is not getting created.
Please configure Lombok in your IDE
Also verify whether you enable H2 console in your application.yml file or not
@@Javatechie I'm not using .yml I'm configuration it in application.properties file
Okay did you enable H2 console?
@@Javatechie yes
Hey, Basant I'm sharing my code with you on your mail id, please review it when you have time, tell me the solution
Where is the link of spring cloud
Check in video description
I'm getting white label error can u help
Please check the url . Some mistake is there in url
I didn't used lombook ,getters and setters i made auto generated...
Remaining all those i folled u only.
Can u give u r mail id or contact numb...pls
I am unable to create spring boot project in community edition.
Why any error are you getting?
@@Javatechie I don't see any option to create spring boot project
@Saroj Install spring assistance plugin in Intellij. You will get the spring boot project option
using Intelij Community edition you cant create Spirng project :)