Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main2 #14

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions spring-6-webapp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# spring-6-webapp
Spring 6 Web App
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
package guru.springframework.spring6webapp.bootstrap;

import guru.springframework.spring6webapp.domain.Author;
import guru.springframework.spring6webapp.domain.Book;
import guru.springframework.spring6webapp.domain.Publisher;
import guru.springframework.spring6webapp.repository.AuthorRepository;
import guru.springframework.spring6webapp.repository.BookRepository;
import guru.springframework.spring6webapp.repository.PublisherRepository;
import org.springframework.boot.CommandLineRunner;
import org.springframework.stereotype.Component;

@Component
public class BootstrapData implements CommandLineRunner {
private final PublisherRepository publisherRepository;
private final AuthorRepository authorRepository;
private final BookRepository bookRepository;

public BootstrapData(AuthorRepository authorRepository, BookRepository bookRepository, PublisherRepository publisherRepository) {
this.authorRepository = authorRepository;
this.bookRepository = bookRepository;
this.publisherRepository = publisherRepository;
}

@Override
public void run(String... args) throws Exception {
Author eric = new Author();
eric.setFirstName("Eric");
eric.setFirstName("Evans");

Book ddd = new Book();
ddd.setTitle("Domain Driven Design");
ddd.setIsbn("123456");

Author ericSaved = authorRepository.save(eric);
Book dddSaved = bookRepository.save(ddd);
Author rod = new Author();
rod.setFirstName("Rod");
rod.setFirstName("Johnson");

Book noEJB = new Book();
noEJB.setTitle("J2EE Development without EJB");
noEJB.setIsbn("54757587");

Author rodSaved = authorRepository.save(rod);
Book noEJBSaved = bookRepository.save(noEJB);

ericSaved.getBooks().add(dddSaved);
rodSaved.getBooks().add(noEJBSaved);


Publisher publisher = new Publisher();
publisher.setAddress("The city Of Books");
publisher.setPublisherName("Amazon Books");
publisher.setCity("New Youk");
Publisher savedPublisher = publisherRepository.save(publisher);

dddSaved.setPublisher(savedPublisher);
noEJBSaved.setPublisher(publisher);

System.out.println("Publisher count: ");
System.out.println(publisherRepository.count());


authorRepository.save(ericSaved);
authorRepository.save(rodSaved);
bookRepository.save(dddSaved);
bookRepository.save(noEJBSaved);



System.out.println("In Bootstrap");
System.out.println("Author count: " + authorRepository.count());
System.out.println("Book count: " + bookRepository.count());

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
package guru.springframework.spring6webapp.domain;

import jakarta.persistence.*;

import java.util.HashSet;
import java.util.Set;

@Entity
public class Author {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String firstName;
private String lastName;

@ManyToMany(mappedBy = "authors")
private Set<Book> books = new HashSet<>();

public Set<Book> getBooks() {
return books;
}

public void setBooks(Set<Book> books) {
this.books = books;
}

public Long getId() {
return id;
}

public void setId(Long id) {
this.id = id;
}

public String getFirstName() {
return firstName;
}

public void setFirstName(String firstName) {
this.firstName = firstName;
}

public String getLastName() {
return lastName;
}

public void setLastName(String lastName) {
this.lastName = lastName;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Author author)) return false;

return getId() != null ? getId().equals(author.getId()) : author.getId() == null;
}

@Override
public int hashCode() {
return getId() != null ? getId().hashCode() : 0;
}


@Override
public String toString() {
return "Author{" +
"id=" + id +
", firstName='" + firstName + '\'' +
", lastName='" + lastName + '\'' +
", books=" + books +
'}';
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
package guru.springframework.spring6webapp.domain;

import jakarta.persistence.*;

import java.util.HashSet;
import java.util.Set;

@Entity
public class Book {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

private String title;
private String isbn;

@ManyToOne
private Publisher publisher;

public Publisher getPublisher() {
return publisher;
}

public void setPublisher(Publisher publisher) {
this.publisher = publisher;
}

@ManyToMany
@JoinTable(
name = "author_book",
joinColumns = @JoinColumn(name = "book_id"),
inverseJoinColumns = @JoinColumn(name = "author_id"))
private Set<Author> authors = new HashSet<>();

public Set<Author> getAuthors() {
return authors;
}

public void setAuthors(Set<Author> authors) {
this.authors = authors;
}

public Long getId() {
return id;
}

public void setId(Long id) {
this.id = id;
}

public String getTitle() {
return title;
}

public void setTitle(String title) {
this.title = title;
}

public String getIsbn() {
return isbn;
}

public void setIsbn(String author) {
this.isbn = author;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Book book)) return false;

return getId() != null ? getId().equals(book.getId()) : book.getId() == null;
}

@Override
public int hashCode() {
return getId() != null ? getId().hashCode() : 0;
}

@Override
public String toString() {
return "Book{" +
"id=" + id +
", title='" + title + '\'' +
", author='" + isbn + '\'' +
", authors=" + authors +
'}';
}
}














Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
package guru.springframework.spring6webapp.domain;

import jakarta.persistence.*;

import java.util.Set;

@Entity
public class Publisher {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String publisherName;
private String address;
private String city;
private String state;
private String zipCode;

@OneToMany(mappedBy = "publisher")
private Set<Book> books;

public Set<Book> getBooks() {
return books;
}

public void setBooks(Set<Book> books) {
this.books = books;
}

public Long getId() {
return id;
}

public void setId(Long id) {
this.id = id;
}

public String getPublisherName() {
return publisherName;
}

public void setPublisherName(String publisherName) {
this.publisherName = publisherName;
}

public String getAddress() {
return address;
}

public void setAddress(String address) {
this.address = address;
}

public String getCity() {
return city;
}

public void setCity(String city) {
this.city = city;
}

public String getState() {
return state;
}

public void setState(String state) {
this.state = state;
}

public String getZipCode() {
return zipCode;
}

public void setZipCode(String zip) {
this.zipCode = zip;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Publisher publisher)) return false;

return getId() != null ? getId().equals(publisher.getId()) : publisher.getId() == null;
}

@Override
public int hashCode() {
return getId() != null ? getId().hashCode() : 0;
}

@Override
public String toString() {
return "Publisher{" +
"id=" + id +
", publisherName='" + publisherName + '\'' +
", address='" + address + '\'' +
", city='" + city + '\'' +
", state='" + state + '\'' +
", zip='" + zipCode + '\'' +
'}';
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package guru.springframework.spring6webapp.repository;

import guru.springframework.spring6webapp.domain.Author;
import org.springframework.data.repository.CrudRepository;

public interface AuthorRepository extends CrudRepository<Author, Long> {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package guru.springframework.spring6webapp.repository;

import guru.springframework.spring6webapp.domain.Book;
import org.springframework.data.repository.CrudRepository;

public interface BookRepository extends CrudRepository<Book, Long> {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package guru.springframework.spring6webapp.repository;

import guru.springframework.spring6webapp.domain.Publisher;
import org.springframework.data.repository.CrudRepository;

public interface PublisherRepository extends CrudRepository<Publisher, Long> {
}
Loading