Project report
The report should include the project's background and motivation and a brief overview of related and similar work, with at least 3 references. This formal report will be a culmination of previous reports submitted and should include a detailed description of the implemented system, including what it does, how it works, and how it is used. The report should address all the feedback provided in previous submissions. The report should also detail the group’s accomplishments and reflect on their experience.
Final Report Outline:
- Introduction – Brief summary of your project, context and motivation
- Process Overview – brief description of your approach, tools and artifacts used, including summary of individual contributions
- Requirements Specification – summary of functional and non-functional requirements
- Project Design – architecture and implementation of your project and how it works
- Project Evaluation: Testing strategy, Test Plan and Results, Validation
- Design and Alternate Designs – changes made to the source code due to testing results
- Development History: Project timeline
- Discussion: Lessons learned, design strengths, limitations and suggestions for future improvement
- Conclusion
- Acknowledgement (optional)
- References
- Appendix
- System specification: technical specifications, minimum hardware requirements of the project implemented
- User Guide
- Other appendices (optional)
Guidelines for the format and submission of the paper are as follows:
- The paper should be 15-20 pages in length. (This minimum and maximum length should not include the title page, appendix, separate figures and tables, or the list of references);
- The paper should include a cover page containing the project's title and the names of project team members. All team members should submit the same document to the assignment submission area.
- Careful attention should be given to source citations, and a proper listing of references.
- The paper should be well formatted and well organized with proper formatting of all graphs, images, tables etc.
weather_app/pom.xml
4.0.0 org.springframework.boot spring-boot-starter-parent 3.3.1 com.service weather 0.0.1-SNAPSHOT weather Weather website 17 org.springframework.boot spring-boot-starter-web com.h2database h2 runtime org.springframework.boot spring-boot-starter-test test jakarta.persistence jakarta.persistence-api 3.1.0 org.mockito mockito-core test org.mockito mockito-junit-jupiter test org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-maven-plugin
weather_app/src/main/java/com/service/weather/controller/WeatherController.java
weather_app/src/main/java/com/service/weather/controller/WeatherController.java
package com . service . weather . controller ;
import com . service . weather . model . WeatherRecord ;
import com . service . weather . service . WeatherService ;
import org . springframework . beans . factory . annotation . Autowired ;
import org . springframework . web . bind . annotation . * ;
/**
* The WeatherController class handles HTTP requests related to weather data.
* It provides an endpoint to fetch weather information based on a given zip code.
*/
@ RestController
@ RequestMapping ( "/api/weather" )
public class WeatherController {
@ Autowired
private WeatherService weatherService ;
@ GetMapping
public WeatherRecord getWeatherByZipCode ( @ RequestParam String zipCode ) {
return weatherService . getWeatherByZipCode ( zipCode );
}
}
weather_app/src/main/java/com/service/weather/controller/ZipCodeController.java
weather_app/src/main/java/com/service/weather/controller/ZipCodeController.java
package com . service . weather . controller ;
import com . service . weather . model . ZipCode ;
import com . service . weather . service . ZipCodeService ;
import org . springframework . beans . factory . annotation . Autowired ;
import org . springframework . web . bind . annotation . * ;
import java . util . List ;
/**
* The ZipCodeController class handles HTTP requests related to zip codes.
* It provides endpoints to fetch all zip codes, add a new zip code, and remove an existing zip code.
*/
@ RestController
@ RequestMapping ( "/api/zipcodes" )
public class ZipCodeController {
@ Autowired
private ZipCodeService zipCodeService ;
@ GetMapping
public List < ZipCode > getAllZipCodes () {
return zipCodeService . getAllZipCodes ();
}
@ PostMapping
public ZipCode addZipCode ( @ RequestBody ZipCode zipCode ) {
return zipCodeService . addZipCode ( zipCode );
}
@ DeleteMapping ( "/{id}" )
public void removeZipCode ( @ PathVariable Long id ) {
zipCodeService . removeZipCode ( id );
}
}
weather_app/src/main/java/com/service/weather/model/OpenWeatherMapResponse.java
weather_app/src/main/java/com/service/weather/model/OpenWeatherMapResponse.java
package com . service . weather . model ;
import com . fasterxml . jackson . annotation . JsonIgnoreProperties ;
import com . fasterxml . jackson . annotation . JsonProperty ;
import java . util . List ;
/**
* The OpenWeatherMapResponse class represents the response structure from the OpenWeatherMap API.
*/
@ JsonIgnoreProperties ( ignoreUnknown = true )
public class OpenWeatherMapResponse {
private Main main ;
private Wind wind ;
private List < Weather > weather ;
private String name ;
public Main getMain () {
return main ;
}
public void setMain ( Main main ) {
this . main = main ;
}
public Wind getWind () {
return wind ;
}
public void setWind ( Wind wind ) {
this . wind = wind ;
}
public List < Weather > getWeather () {
return weather ;
}
public void setWeather ( List < Weather > weather ) {
this . weather = weather ;
}
public String getName () {
return name ;
}
public void setName ( String name ) {
this . name = name ;
}
@ JsonIgnoreProperties ( ignoreUnknown = true )
public static class Main {
private double temp ;
@ JsonProperty ( "feels_like" )
private double feels_like ;
private double temp_min ;
private double temp_max ;
private int humidity ;
public double getTemp () {
return temp ;
}
public void setTemp ( double temp ) {
this . temp = temp ;
}
public double getFeels_like () {
return feels_like ;
}
public void setFeels_like ( double feelsLike ) {
this . feels_like =</span
Collepals.com Plagiarism Free Papers
Are you looking for custom essay writing service or even dissertation writing services? Just request for our write my paper service, and we'll match you with the best essay writer in your subject! With an exceptional team of professional academic experts in a wide range of subjects, we can guarantee you an unrivaled quality of custom-written papers.
Get ZERO PLAGIARISM, HUMAN WRITTEN ESSAYS
Why Hire Collepals.com writers to do your paper?
Quality- We are experienced and have access to ample research materials.
We write plagiarism Free Content
Confidential- We never share or sell your personal information to third parties.
Support-Chat with us today! We are always waiting to answer all your questions.
All Rights Reserved Terms and Conditions
College pals.com Privacy Policy 2010-2018