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

implemented task #63

Open
wants to merge 3 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
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,12 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.1.0</version>
</dependency>
</dependencies>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

</project>
11 changes: 11 additions & 0 deletions src/main/java/mate/academy/DataProcessingException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package mate.academy;

public class DataProcessingException extends RuntimeException {
public DataProcessingException(String message, Throwable ex) {
super(message, ex);
}

public DataProcessingException(String message) {
super(message);
}
}
19 changes: 18 additions & 1 deletion src/main/java/mate/academy/Main.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
package mate.academy;

import mate.academy.dao.BookDao;
import mate.academy.lib.Injector;
import mate.academy.model.Book;
import java.math.BigDecimal;
import java.util.Optional;

public class Main {
public static void main(String[] args) {
private static final Injector injector = Injector.getInstance("mate.academy.dao");

public static void main(String[] args) {
BookDao bookDao = (BookDao) injector.getInstance(BookDao.class);
Book book = new Book();
book.setTitle("Sample");
book.setPrice(BigDecimal.valueOf(5.99));
bookDao.create(book);
Optional<Book> foundBook = bookDao.findById(book.getId());
bookDao.findAll();
Book updatedBook = foundBook.orElseThrow();
bookDao.update(updatedBook);
bookDao.deleteById(book.getId());
}
}
17 changes: 17 additions & 0 deletions src/main/java/mate/academy/dao/BookDao.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package mate.academy.dao;

import mate.academy.model.Book;
import java.util.List;
import java.util.Optional;

public interface BookDao {
Book create(Book book);

Optional<Book> findById(Long id);

List<Book> findAll();

Book update(Book book);

boolean deleteById(Long id);
}
126 changes: 126 additions & 0 deletions src/main/java/mate/academy/dao/BookDaoImpl.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
package mate.academy.dao;

import mate.academy.DataProcessingException;
import mate.academy.model.Book;
import mate.academy.lib.Dao;
import java.math.BigDecimal;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import java.util.Properties;

@Dao
public class BookDaoImpl implements BookDao {
@Override
public Book create(Book book) {
String query = "INSERT INTO books (title, price) VALUES (?, ?)";
try (Connection connection = getConnection();
PreparedStatement statement = connection.prepareStatement(query,
PreparedStatement.RETURN_GENERATED_KEYS)) {
setBookParameters(statement, book);
statement.executeUpdate();
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think there should be

Suggested change
statement.executeUpdate();
int updatedRows = statement.executeUpdate();
if(updatedRows < 1) {
throw new DataProcassException ...

try (ResultSet generatedKeys = statement.getGeneratedKeys()) {
if (generatedKeys.next()) {
Long id = generatedKeys.getObject(1, Long.class);
book.setId(id);
} else {
throw new SQLException("Creating book " + book + " failed, no ID obtained.");
}
}
return book;
} catch (SQLException e) {
throw new DataProcessingException("Failed to create book " + book, e);
}
}

@Override
public Optional<Book> findById(Long id) {
String query = "SELECT * FROM books WHERE id = ?";
try (Connection connection = getConnection();
PreparedStatement statement = connection.prepareStatement(query)) {

statement.setLong(1, id);
try (ResultSet resultSet = statement.executeQuery()) {
if (resultSet.next()) {
return Optional.of(parseBook(resultSet));
}
}
return Optional.empty();
} catch (SQLException e) {
throw new DataProcessingException("Failed to find book by ID " + id, e);
}
}

@Override
public List<Book> findAll() {
String query = "SELECT * FROM books";
try (Connection connection = getConnection();
PreparedStatement statement = connection.prepareStatement(query);
ResultSet resultSet = statement.executeQuery()) {

List<Book> books = new ArrayList<>();
while (resultSet.next()) {
books.add(parseBook(resultSet));
}
return books;
} catch (SQLException e) {
throw new DataProcessingException("Failed to get all books", e);
}
}

@Override
public Book update(Book book) {
String query = "UPDATE books SET title = ?, price = ? WHERE id = ?";
try (Connection connection = getConnection();
PreparedStatement statement = connection.prepareStatement(query)) {
setBookParameters(statement, book);
statement.setLong(3, book.getId());
statement.executeUpdate();
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think there should be

Suggested change
statement.executeUpdate();
int updatedRows = statement.executeUpdate();
if(updatedRows < 1) {
throw new DataProcassException ...

return book;
} catch (SQLException e) {
throw new DataProcessingException("Failed to update book" + book, e);
}
}

@Override
public boolean deleteById(Long id) {
String query = "DELETE FROM books WHERE id = ?";
try (Connection connection = getConnection();
PreparedStatement statement = connection.prepareStatement(query)) {

statement.setLong(1, id);
int rowsDeleted = statement.executeUpdate();
return rowsDeleted > 0;
} catch (SQLException e) {
throw new DataProcessingException("Failed to delete book by ID " + id, e);
}
}

private Connection getConnection() throws SQLException {
Properties dbProperties = new Properties();
dbProperties.put("user", "root");
dbProperties.put("password", "Vika07012000");
return DriverManager.getConnection("jdbc:mysql://localhost:3306/books", dbProperties);
}

private Book parseBook(ResultSet resultSet) throws SQLException {
Long id = resultSet.getObject("id", Long.class);
String title = resultSet.getString("title");
BigDecimal price = resultSet.getBigDecimal("price");
Book book = new Book();
book.setId(id);
book.setTitle(title);
book.setPrice(price);
return book;
}

private void setBookParameters(PreparedStatement statement, Book book) throws SQLException {
statement.setString(1, book.getTitle());
statement.setBigDecimal(2, book.getPrice());
}
}
36 changes: 36 additions & 0 deletions src/main/java/mate/academy/model/Book.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package mate.academy.model;

import java.math.BigDecimal;

public class Book {
private Long id;
private String title;
private BigDecimal price;

public Book() {
}

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 BigDecimal getPrice() {
return price;
}

public void setPrice(BigDecimal price) {
this.price = price;
}
}
6 changes: 6 additions & 0 deletions src/main/resources/init_db.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CREATE TABLE `books` (
`id` BIGINT NOT NULL AUTO_INCREMENT,
`title` VARCHAR(255) NOT NULL,
`price` DECIMAL(10, 2) NOT NULL,
PRIMARY KEY (id)
);