Quiz App Using Spring Boot #1 | Microservices Tutorial

Ғылым және технология

What are Microservices : • What are Microservices?
Microservice Git Link : github.com/navinreddy20/Micro...
Check out our courses:
Spring and Microservices Weekend Live Batch : bit.ly/spring-live-weekend
Coupon: TELUSKO10 (10% Discount)
Master Java Spring Development : bit.ly/java-spring-cloud
For More Queries WhatsApp or Call on : +919008963671
website : courses.telusko.com/
Instagram : / navinreddyofficial
Linkedin : / navinreddy20
TELUSKO Android App : bit.ly/TeluskoApp
Discord : / discord
More Learning :
Java :- bit.ly/3x6rr0N
Python :- bit.ly/3GRc7JX
Django :- bit.ly/3MmoJK6
JavaScript :- bit.ly/3tiAlHo
Node JS :- bit.ly/3GT4liq
Rest Api :-bit.ly/3MjhZwt
Servlet :- bit.ly/3Q7eA7k
Spring Framework :- bit.ly/3xi7buh
Design Patterns in Java :- bit.ly/3MocXiq
Docker :- bit.ly/3xjWzLA
Blockchain Tutorial :- bit.ly/3NSbOkc
Corda Tutorial:- bit.ly/3thbUKa
Hyperledger Fabric :- bit.ly/38RZCRB
NoSQL Tutorial :- bit.ly/3aJpRuc
Mysql Tutorial :- bit.ly/3thpr4L
Data Structures using Java :- bit.ly/3MuJa7S
Git Tutorial :- bit.ly/3NXyCPu
Donation:
PayPal Id : navinreddy20
www.telusko.com
www.instamojo.com/@NavinReddy

Пікірлер: 32

  • @imdadabro4118
    @imdadabro4118 Жыл бұрын

    Glad to find this video, Eagerly waiting for the videos.

  • @theparten
    @theparten Жыл бұрын

    keep on doing good work😊...

  • @rutvikraval4476
    @rutvikraval4476 Жыл бұрын

    good video sir

  • @akvloggsofficial
    @akvloggsofficial Жыл бұрын

    🔥

  • @user-rz9hm7mr2i
    @user-rz9hm7mr2i9 ай бұрын

    Can anyone help me with the Database used here, TIA.

  • @stanniru62
    @stanniru62 Жыл бұрын

    Hi Sir, Can you please post the code of quizapp and questionapp

  • @MaxProgramming
    @MaxProgramming Жыл бұрын

    I'm curious, why is NestJS (TypeScript) so much similar to Spring Boot (Java)

  • @davidtzirima9301

    @davidtzirima9301

    Жыл бұрын

    actually same question here haha

  • @madhusudhanreddychencharap4881
    @madhusudhanreddychencharap48819 ай бұрын

    INSERT INTO public.question( id, category, difficultylevel, option1, option2, option3, option4, question_title, right_answer) VALUES (3,'Java','Easy','indicates specific to object','Independent of object','assigns at runtime','none','what the meaning of static?','Independent of object' ), (4,'Java','Easy','try','catch','finally','extends','which block is used to run at anytime?','finally'), (5,'Java','Easy','-','+','*','@','which java keyword used to conacatenate strings','+'), (6,'Java','Easy','hashmap','ArrayList','Array','Linkedlist','which class implementation of dynamic array','ArrayList'), (7,'Java','Easy','try','catch','throw','throws','Which java keyword used to explicily throw an exception','throw'), (8,'Java','Easy','terminate loop','throw exception','not a keyword','create thread','what is the use of break','terminate loop'), (9,'Java','Easy','for loop','while loop','do while','switch loop','Which loop in java executed atleast once?','do while'), (10,'Python','Easy','set','tuple','list','array','In python which datatype is mutable','list'), (11,'Python','Easy','numpy','date and time','sys','array','In python which module is working for data and time','date and time'), (12,'Python','Easy','length()','len()','range()','add()','In python which functio is used to calculate length of list?','len()'); ;

  • @sanketkalokhe7400

    @sanketkalokhe7400

    6 ай бұрын

    Thanks a lot brother

  • @plucero

    @plucero

    6 ай бұрын

    to create the table before the inserts use this: CREATE TABLE public.question ( id SERIAL PRIMARY KEY, category VARCHAR(255), difficultylevel VARCHAR(255), option1 VARCHAR(255), option2 VARCHAR(255), option3 VARCHAR(255), option4 VARCHAR(255), question_title VARCHAR(255), right_answer VARCHAR(255) );

  • @user-fz1cj8rh6k

    @user-fz1cj8rh6k

    4 ай бұрын

    ​@@sanketkalokhe7400 Thank you brother....💕💕💕

  • @user-fz1cj8rh6k

    @user-fz1cj8rh6k

    4 ай бұрын

    Thank you brother....💕💕💕@@plucero

  • @MFM88832

    @MFM88832

    2 ай бұрын

    @@plucero Thank you so much!

  • @theuntrainedsinger1185
    @theuntrainedsinger11855 ай бұрын

    the real microservices tutorial starts at video number 19 need of service discovery. before that he creates a quiz app which contains two services quiz and questions. then he divides this monolithic project into 2 projects.

  • @harshkarwa3214
    @harshkarwa3214 Жыл бұрын

    Hi Navin Sir, Just wanted to know your views on the rise of AI in Code Development. Now we know that we can generate Core Java programs/code through AI, but advanced Java (Springboot, etc.) will get affected by the AI evolution. If yes, how will it get impact an average engineer life's?

  • @kaminenisaiteja7922

    @kaminenisaiteja7922

    Жыл бұрын

    Bro we can’t say AI can write spring boot programs.Because while writing spring boot code you will face lots of compatibility issues.

  • @kaminenisaiteja7922

    @kaminenisaiteja7922

    Жыл бұрын

    Even AI also unable to understand that one because it throws exceptions rather than exact problem

  • @krishnateja6664
    @krishnateja66642 ай бұрын

    can anyone here provide the database file used in this project?

  • @darkhunter1704
    @darkhunter1704 Жыл бұрын

    1st like + comment

  • @shubhamrajkumawat
    @shubhamrajkumawat Жыл бұрын

    Hi, I am getting whitelabel error i tried everything

  • @shubhamrajkumawat

    @shubhamrajkumawat

    Жыл бұрын

    Let me know how can I resolve that

  • @nandinijain08

    @nandinijain08

    9 ай бұрын

    Hi, how does it get resolved?

  • @kapadiamiraj
    @kapadiamirajАй бұрын

    PostgreSQL DB Script :- CREATE DATABASE questiondb SELECT session_user, current_database(); --for checking the current database connection CREATE TABLE public.question ( id SERIAL PRIMARY KEY, question_title TEXT NOT NULL, option1 TEXT NOT NULL, option2 TEXT NOT NULL, option3 TEXT NOT NULL, option4 TEXT NOT NULL, right_answer TEXT NOT NULL, difficulty_level TEXT NOT NULL, category TEXT NOT NULL ); INSERT INTO question (category, difficulty_level, option1, option2, option3, option4, question_title, right_answer) VALUES ('Java', 'Easy', 'class', 'interface', 'extends', 'implements', 'Which Java keyword is used to create a subclass?', 'extends'), ('Java', 'Easy', '4', '5', '6', 'Compile error', 'What is the output of the following Java code snippet? int x = 5; System.out.println(x++);', '5'), ('Java', 'Easy', 'TRUE', 'FALSE', '0', 'null', 'In Java, what is the default value of an uninitialized boolean variable?', 'FALSE'), ('Java', 'Easy', 'try', 'throw', 'catch', 'finally', 'Which Java keyword is used to explicitly throw an exception?', 'throw'), ('Java', 'Easy', 'It indicates that a variable is constant.', 'It indicates that a method can be accessed without creating an instance of the class.', 'It indicates that a class cannot be extended.', 'It indicates that a variable is of primitive type.', 'What does the ''static'' keyword mean in Java?', 'It indicates that a method can be accessed without creating an instance of the class.'), ('Java', 'Easy', 'constant int x = 5;', 'final int x = 5;', 'static int x = 5;', 'readonly int x = 5;', 'What is the correct way to declare a constant variable in Java?', 'final int x = 5;'), ('Java', 'Easy', 'for loop', 'while loop', 'do-while loop', 'switch loop', 'Which loop in Java allows the code to be executed at least once?', 'do-while loop'), ('Java', 'Easy', 'To terminate a loop or switch statement and transfer control to the next statement.', 'To skip the rest of the code in a loop and move to the next iteration.', 'To define a label for a loop or switch statement.', 'To check a condition and execute a block of code repeatedly.', 'What is the purpose of the ''break'' statement in Java?', 'To terminate a loop or switch statement and transfer control to the next statement.'), ('Java', 'Easy', '+', '-', '*', '/', 'Which Java operator is used to concatenate two strings?', '+'), ('Java', 'Easy', 'HashMap', 'ArrayList', 'LinkedList', 'HashSet', 'In Java, which collection class provides an implementation of a dynamic array?', 'ArrayList'), ('Python', 'Easy', 'count()', 'size()', 'length()', 'len()', 'Which Python function is used to calculate the length of a list?', 'len()'), ('Python', 'Easy', '[1, 2, 3]', '[1, 2, 3, 4]', '[4, 3, 2, 1]', 'Error', 'What is the output of the following Python code snippet? x = [1, 2, 3] x.append(4) print(x)', '[1, 2, 3, 4]'), ('Python', 'Easy', 'break', 'continue', 'pass', 'return', 'Which Python statement is used to exit from a loop prematurely?', 'break'), ('Python', 'Easy', 'To generate a random number within a given range.', 'To iterate over a sequence of numbers.', 'To sort a list in ascending order.', 'To calculate the length of a string.', 'What is the purpose of the ''range()'' function in Python?', 'To iterate over a sequence of numbers.'), ('Python', 'Easy', 'int', 'float', 'str', 'list', 'In Python, which data type is mutable?', 'list'), ('Python', 'Easy', 'datetime', 'math', 'os', 'sys', 'Which Python module is used for working with dates and times?', 'datetime') ; SELECT * FROM public.question;

  • @user-uz1dv1ro6h

    @user-uz1dv1ro6h

    16 күн бұрын

    Hi guys any one have data base for question service and quiz service

  • @user-du1cg6fd5r
    @user-du1cg6fd5r Жыл бұрын

    can anyone here provide the database file used in this project?

  • @HarshSingh-om7ud

    @HarshSingh-om7ud

    9 ай бұрын

    Hi, Did you get it?

  • @irmme545sdbenc

    @irmme545sdbenc

    7 ай бұрын

    hi can you send it to me too please?

Келесі