Skip to content

Commit 9a527d4

Browse files
committed
✨ All backend-front integratn done.Result calc don
all done
1 parent 93c69ab commit 9a527d4

File tree

8 files changed

+9
-6
lines changed

8 files changed

+9
-6
lines changed

03.QuizApp Microservices/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
# PORTS
22

33
- API Gateway : 8765,
4-
- QUESTION-SERVICE : 8080, (Mention -Dserver.port=8080 in right click on qn service/run-as/run-configurations/arguments tab/ VM arguments)
4+
- QUESTION-SERVICE : 8080, (Add -Dserver.port=8080 in right click on qn service/run-as/run-configurations/arguments tab/ VM arguments)
55
<!-- - QUIZ-SERVICE : 8090, -->
66
- QUIZ-SERVICE : 8081,
77
- SERVICE-REGISTRY : 8761
88

99
# Screenshots (Wait for 5-10 PNG screenshot files to load)
1010

11+
<img src="./Screenshots/ss37.PNG" alt="Angular frontend calling quiz-service microservice get method for listing questions" >
12+
<img src="./Screenshots/ss38.PNG" alt="Angular frontend calling question-service microservice post method for result calculation" >
13+
<img src="./Screenshots/ss30.PNG" alt="all microservices added successfully" >
1114
<img src="./Screenshots/ss18.PNG" alt="getAllQuestions by Ids for quiz Microservice" >
1215
<img src="./Screenshots/ss19.PNG" alt="getScore by Response Entity for quiz Microservice" >
1316
<img src="./Screenshots/ss20.PNG" alt="create new port for running 2 VM on port no 8080 and 8081, run->run configurations->arguments tab->-Dserver.port=8081" >
@@ -17,7 +20,6 @@
1720
<img src="./Screenshots/ss27.PNG" alt="quiz-service working!" >
1821
<img src="./Screenshots/ss28.PNG" alt="quiz-service working!" >
1922
<img src="./Screenshots/ss29.PNG" alt="quiz-service working!" >
20-
<img src="./Screenshots/ss30.PNG" alt="all microservices added successfully" >
2123
<img src="./Screenshots/ss31.PNG" alt="api gateway working!" >
2224

2325
# APIs
195 KB
Loading
239 KB
Loading
260 KB
Loading
217 KB
Loading
236 KB
Loading

03.QuizApp Microservices/question-service/src/main/java/com/example/questionservice/model/QuestionWrapper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.example.questionservice.model;
22

3-
import lombok.NoArgsConstructor;
3+
// import lombok.NoArgsConstructor;
44

5-
@NoArgsConstructor
5+
// @NoArgsConstructor
66
public class QuestionWrapper {
77
public Integer id;
88
public String questionTitle;

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
# Screenshots (Wait for 5-10 PNG screenshot files to load)
66

7+
<img src="./03.QuizApp Microservices/Screenshots/ss37.PNG" alt="Angular frontend calling quiz-service microservice get method for listing questions" >
8+
<img src="./03.QuizApp Microservices/Screenshots/ss38.PNG" alt="Angular frontend calling question-service microservice post method for result calculation" >
9+
<img src="./03.QuizApp Microservices/Screenshots/ss30.PNG" alt="all microservices added successfully" >
710
<img src="./03.QuizApp Microservices/Screenshots/ss18.PNG" alt="getAllQuestions by Ids for quiz Microservice" >
811
<img src="./03.QuizApp Microservices/Screenshots/ss19.PNG" alt="getScore by Response Entity for quiz Microservice" >
912
<img src="./03.QuizApp Microservices/Screenshots/ss20.PNG" alt="create new port for running 2 VM on port no 8080 and 8081, run->run configurations->arguments tab->-Dserver.port=8081" >
@@ -13,8 +16,6 @@
1316
<img src="./03.QuizApp Microservices/Screenshots/ss27.PNG" alt="quiz-service working!" >
1417
<img src="./03.QuizApp Microservices/Screenshots/ss28.PNG" alt="quiz-service working!" >
1518
<img src="./03.QuizApp Microservices/Screenshots/ss29.PNG" alt="quiz-service working!" >
16-
<img src="./03.QuizApp Microservices/Screenshots/ss30.PNG" alt="all microservices added successfully" >
17-
<img src="./03.QuizApp Microservices/Screenshots/ss31.PNG" alt="api gateway working!" >
1819

1920
# Monolithic Screenshots -
2021

0 commit comments

Comments
 (0)