-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQUICKSTART.txt
More file actions
267 lines (193 loc) · 12.6 KB
/
QUICKSTART.txt
File metadata and controls
267 lines (193 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
╔════════════════════════════════════════════════════════════════════════════╗
║ ║
║ 🎮 JAVA TRIVIA Q&A APPLICATION - QUICK START 🎮 ║
║ ║
║ Production-Ready Maven Project ║
║ ║
╚════════════════════════════════════════════════════════════════════════════╝
📋 SYSTEM REQUIREMENTS
═══════════════════════════════════════════════════════════════════════════
✓ Java 21 JDK or later
✓ Maven 3.8.0 or later
✓ Windows, macOS, or Linux
✓ Internet connection (for live version only)
═══════════════════════════════════════════════════════════════════════════
🚀 INSTALLATION
═══════════════════════════════════════════════════════════════════════════
1. VERIFY JAVA INSTALLATION
java --version (should show Java 21+)
2. VERIFY MAVEN INSTALLATION
mvn --version (should show Maven 3.8+)
3. DOWNLOAD PROJECT
Extract the project files to a directory
4. NAVIGATE TO PROJECT
cd trivia-qa
═══════════════════════════════════════════════════════════════════════════
▶️ RUN THE APPLICATION
═══════════════════════════════════════════════════════════════════════════
COMPILE FIRST
mvn clean compile
DEMO VERSION (No Internet Required)
mvn exec:java -Dexec.mainClass="com.trivia.app.TriviaAppDemo"
LIVE VERSION (Requires Internet)
mvn exec:java -Dexec.mainClass="com.trivia.app.TriviaApp"
CREATE EXECUTABLE JAR
mvn clean package
java -jar target/trivia-qa-app.jar
═══════════════════════════════════════════════════════════════════════════
💻 USING IDE
═══════════════════════════════════════════════════════════════════════════
INTELLIJ IDEA:
1. Open project (File > Open)
2. Select pom.xml or project directory
3. Right-click on TriviaAppDemo.java
4. Select "Run 'TriviaAppDemo.main()'"
ECLIPSE:
1. Import project (File > Import > Maven > Existing Maven Projects)
2. Right-click on TriviaAppDemo.java
3. Select "Run As > Java Application"
VS CODE:
1. Open project directory
2. Install Extension Pack for Java
3. Right-click on TriviaAppDemo.java
4. Select "Run" or "Debug"
═══════════════════════════════════════════════════════════════════════════
📁 PROJECT STRUCTURE
═══════════════════════════════════════════════════════════════════════════
trivia-qa/
├── pom.xml - Maven configuration
├── src/
│ └── main/java/com/trivia/app/
│ ├── TriviaApp.java - Live version (450 lines)
│ └── TriviaAppDemo.java - Demo version (350 lines)
├── target/ - Build output
│ └── trivia-qa-app.jar - Executable JAR
└── README.md - Full documentation
═══════════════════════════════════════════════════════════════════════════
🎮 HOW TO PLAY
═══════════════════════════════════════════════════════════════════════════
1. Application loads 10 trivia questions
2. Questions display with category and difficulty
3. Choose your answer (press 1, 2, 3, or 4)
4. See immediate feedback
5. Get final score when done
═══════════════════════════════════════════════════════════════════════════
🔧 USEFUL MAVEN COMMANDS
═══════════════════════════════════════════════════════════════════════════
# Clean build artifacts
mvn clean
# Compile source code
mvn compile
# Run demo
mvn exec:java -Dexec.mainClass="com.trivia.app.TriviaAppDemo"
# Run live
mvn exec:java -Dexec.mainClass="com.trivia.app.TriviaApp"
# Build JAR
mvn package
# Run JAR
java -jar target/trivia-qa-app.jar
# Show dependencies
mvn dependency:tree
# Install locally
mvn install
# Generate documentation
mvn javadoc:javadoc
# Full build and test
mvn clean compile package
═══════════════════════════════════════════════════════════════════════════
⚙️ CONFIGURATION
═══════════════════════════════════════════════════════════════════════════
Edit in TriviaApp.java or TriviaAppDemo.java:
class Config {
public static final String API_ENDPOINT =
"https://opentdb.com/api.php?amount=10";
public static final int REQUEST_TIMEOUT = 10000; // 10 seconds
public static final int MAX_RETRIES = 3; // retry attempts
public static final int RETRY_DELAY = 1000; // 1 second delay
}
CHANGE LOGGING LEVEL:
LogLevel.DEBUG - Verbose output
LogLevel.INFO - Standard output
LogLevel.WARNING - Warnings + errors only
LogLevel.ERROR - Errors only
═══════════════════════════════════════════════════════════════════════════
❓ TROUBLESHOOTING
═══════════════════════════════════════════════════════════════════════════
"java: command not found"
→ Install Java 21 JDK from https://www.oracle.com/java/technologies/
"mvn: command not found"
→ Install Maven from https://maven.apache.org/download.cgi
→ Add Maven bin directory to PATH
"JAVA_HOME is not set"
→ Set JAVA_HOME to JDK installation directory
→ Linux/macOS: export JAVA_HOME=/path/to/jdk21
→ Windows: Set via System Properties
"Could not find artifact com.google.code.gson:gson"
→ Run: mvn dependency:resolve
→ Or: mvn clean install
"HttpTimeoutException: Connection refused"
→ Use demo version (no internet needed)
→ Or check internet connection
"Invalid input error"
→ Enter numbers 1-4 only
→ Press Enter after each selection
═══════════════════════════════════════════════════════════════════════════
✨ FEATURES
═══════════════════════════════════════════════════════════════════════════
✓ 10 random trivia questions (live) or 5 mock questions (demo)
✓ Multiple-choice answers with randomization
✓ Immediate feedback on each answer
✓ Final score with percentage calculation
✓ Detailed question-by-question results
✓ Automatic retry on network failure
✓ Structured logging and error handling
✓ Production-ready architecture
✓ Java 21 LTS with latest features
✓ Maven build system
═══════════════════════════════════════════════════════════════════════════
📚 WHAT'S INCLUDED
═══════════════════════════════════════════════════════════════════════════
Source Code:
• TriviaApp.java - Main implementation (450 lines)
• TriviaAppDemo.java - Demo with mock data (350 lines)
Build Configuration:
• pom.xml - Maven project configuration
Documentation:
• README.md - Complete guide (14 KB)
• QUICKSTART.txt - This file
═══════════════════════════════════════════════════════════════════════════
🎯 QUICK COMMANDS
═══════════════════════════════════════════════════════════════════════════
Try Demo (Fastest Way):
cd trivia-qa
mvn clean compile
mvn exec:java -Dexec.mainClass="com.trivia.app.TriviaAppDemo"
Or Build JAR:
mvn clean package
java -jar target/trivia-qa-app.jar
═══════════════════════════════════════════════════════════════════════════
📖 FOR MORE INFORMATION
═══════════════════════════════════════════════════════════════════════════
See README.md for:
✓ Full installation instructions
✓ Architecture overview
✓ All configuration options
✓ Extension points and customization
✓ Performance characteristics
✓ Design patterns used
✓ Troubleshooting guide
✓ Future enhancements
═══════════════════════════════════════════════════════════════════════════
🎉 YOU'RE READY TO PLAY!
═══════════════════════════════════════════════════════════════════════════
DEMO (No Internet):
mvn exec:java -Dexec.mainClass="com.trivia.app.TriviaAppDemo"
LIVE (With Internet):
mvn exec:java -Dexec.mainClass="com.trivia.app.TriviaApp"
EXECUTABLE JAR:
mvn package
java -jar target/trivia-qa-app.jar
═══════════════════════════════════════════════════════════════════════════
Made with ❤️ following enterprise architecture best practices.
Production-Ready Java • Java 21 LTS • Maven Build • Gson JSON
════════════════════════════════════════════════════════════════════════════