Skip to content

Commit

Permalink
Trying a second time
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanurban committed Oct 27, 2022
2 parents ae62383 + 4cc0d35 commit bd78d49
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.OneToOne;
import javax.persistence.Table;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@

import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.Table;

import org.hibernate.annotations.LazyCollection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.skilldistillery.jpaclubindex.entities;

import java.util.ArrayList;
import java.util.Objects;

import javax.persistence.Entity;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToMany;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.OneToOne;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.Table;

import org.hibernate.annotations.LazyCollection;
Expand Down
52 changes: 51 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,51 @@
# MidtermProject
<a name="readme-top"></a>
<h1 align="center">ClubIndex (Midterm Project)</h1>
<h2 align="center">Table of Contents</h2>
<ul>
<li><a href="#readme-description">Description</a></li>
<li><a href="#readme-built">Built With</a></li>
<li><a href="#readme-learned">Things We learned</a></li>
<li><a href="#readme-future">Next Time</a></li>
<li><a href="#readme-note">Things of Note</a></li>
<li><a href="#readme-contact">Contact us</a></li>
</ul>
<a name="readme-description"></a>
<h2 align="center">Description</h2>
<p>This application is a hub for Users to create and update a Book Club(s). It allows Users to review books, create and update reading lists, and manage Book Clubs.</p>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<a name="readme-built"></a>
<h2 align="center">Built With</h2>
<p>This application was built with Java, git, SpringToolSuite, BootStrap, SpringBoot, css, and jsp.</p>
<p>During the production of this application, we used an agile development style and met daily during a scrum meeting. We also utilized a trello board for organizing tasking for this project.</p>
<a name="readme-learned"></a>
<h2 align="center">Things learned</h2>
<p>During production of this application, we learned how to more effectively use an agile development style and gained better understanding of how to use git for version management.</p>
<p>We continued to build our communication skills while working on this project--which has been the biggest project each of us has worked on thus far--and ensured that our product was functioning the way the entire team intended.</p>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<a name="readme-future"></a>
<h2 align="center">Things to do next time</h2>
<p>Given more time for the development phase, and with more knowledge with the utilized technologies, we had planned for a stretch goal of user messaging to better facilitate coordination for meeting of a book club. We would also like to have added the ability to search/add books not currently contained in the database through use of the GoogleBooks API. A stretch goal that would also require more time and/or knowledge would be storing images for user and bookclub profiles on the website, rather than storing an image url in the database.</p>
<p>Also given more time, we would have liked to improve the UI of the website further, making the website feel more natural and professional.</p>
<a name="readme-note"></a>
<h2 align="center">Things of Note</h2>
<p>Of note, a user is able to perform crud operations on almost all of the database tables, and the search methods for our application is fairly robust, allowing a user to accurately find the item they are looking for.</p>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<a name="readme-contact"></a>
<h2 align="center">Contact us</h2>
<p>You can contact us at:</p>
<ol>
<li> Tyler </li>
<ul>
<li><a href="https://www.github.com/dopeysboy">github</a></li>
<li>email: tyler.j.tanner@gmail.com</li>
</ul>
<li> Ashley </li>
<ul>
<li><a href="https://www.github.com/ashnlandofozz">github</a></li>
</ul>
<li>Nolan</li>
<ul>
<li><a href="https://www.github.com/nolanurban">github</a></li>
</ul>
</ol>
<p align="right">(<a href="#readme-top">back to top</a>)</p>

0 comments on commit bd78d49

Please sign in to comment.