Skip to content

Commit 13f388d

Browse files
committed
Upgraded to Boot 2.2.1, this fixed the javax.net.ssl.SSLException thrown when application was stopped because the mysql driver had a bug. Also added graceful stopping of the application. And a CommandLineRunner to control application from command line and avoid duplicated declaration of beans.
Added dropping tables when app is closed, so it can be run as many times as necessary.
1 parent 1a008f6 commit 13f388d

File tree

12 files changed

+61
-58
lines changed

12 files changed

+61
-58
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ build.xml
66
manifest.mf
77
nbactions.xml
88
nb-configuration.xml
9+
out/
10+
*.iml
11+
.idea

HibernateSpringBootAudit/pom.xml

+2-6
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.1.4.RELEASE</version>
17+
<version>2.2.1.RELEASE</version>
1818
<relativePath/> <!-- lookup parent from repository -->
1919
</parent>
2020

2121
<properties>
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24-
<java.version>1.8</java.version>
24+
<java.version>12</java.version>
2525
<maven.compiler.source>12</maven.compiler.source>
2626
<maven.compiler.target>12</maven.compiler.target>
2727
</properties>
@@ -31,10 +31,6 @@
3131
<groupId>org.springframework.boot</groupId>
3232
<artifactId>spring-boot-starter-data-jpa</artifactId>
3333
</dependency>
34-
<dependency>
35-
<groupId>org.springframework.boot</groupId>
36-
<artifactId>spring-boot-starter-jdbc</artifactId>
37-
</dependency>
3834
<dependency>
3935
<groupId>org.springframework.boot</groupId>
4036
<artifactId>spring-boot-starter-web</artifactId>
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,42 @@
11
package com.bookstore;
22

3-
import com.bookstore.auditor.AuditorAwareImpl;
43
import com.bookstore.service.BookstoreService;
5-
import org.springframework.boot.ApplicationRunner;
4+
import org.slf4j.Logger;
5+
import org.slf4j.LoggerFactory;
6+
import org.springframework.boot.CommandLineRunner;
67
import org.springframework.boot.SpringApplication;
78
import org.springframework.boot.autoconfigure.SpringBootApplication;
89
import org.springframework.context.annotation.Bean;
9-
import org.springframework.data.domain.AuditorAware;
1010
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
1111

1212
@SpringBootApplication
1313
@EnableJpaAuditing(auditorAwareRef = "auditorAware")
1414
public class MainApplication {
15-
16-
private final BookstoreService bookstoreService;
1715

18-
public MainApplication(BookstoreService bookstoreService) {
19-
this.bookstoreService = bookstoreService;
20-
}
21-
22-
public static void main(String[] args) {
23-
SpringApplication.run(MainApplication.class, args);
24-
}
16+
private static final Logger logger = LoggerFactory.getLogger(MainApplication.class);
2517

26-
@Bean
27-
public AuditorAware<String> auditorAware() {
28-
return new AuditorAwareImpl();
18+
public static void main(String... args) throws Exception {
19+
var ctx = SpringApplication.run(MainApplication.class, args);
20+
21+
logger.info("Started ...");
22+
System.in.read();
23+
ctx.close();
2924
}
3025

3126
@Bean
32-
public ApplicationRunner init() {
27+
public CommandLineRunner scheduleRunner(BookstoreService bookstoreService) {
3328
return args -> {
3429
System.out.println("Register new author ...");
3530
bookstoreService.registerAuthor();
3631

3732
Thread.sleep(5000);
38-
33+
3934
System.out.println("Update an author ...");
40-
bookstoreService.updateAuthor();
41-
35+
bookstoreService.updateAuthor();
36+
4237
Thread.sleep(5000);
4338
System.out.println("Update books of an author ...");
44-
bookstoreService.updateBooks();
39+
bookstoreService.updateBooks();
4540
};
4641
}
4742
}

HibernateSpringBootAudit/src/main/java/com/bookstore/auditor/AuditorAwareImpl.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
import java.util.Optional;
55
import java.util.Random;
66
import org.springframework.data.domain.AuditorAware;
7+
import org.springframework.stereotype.Component;
78

9+
@Component("auditorAware")
810
public class AuditorAwareImpl implements AuditorAware<String> {
911

1012
@Override
1113
public Optional<String> getCurrentAuditor() {
12-
// use Spring Security to retrive the currently logged-in user(s)
13-
return Optional.of(Arrays.asList("mark1990", "adrianm", "dan555")
14-
.get(new Random().nextInt(3)));
14+
// use Spring Security to retrieve the currently logged-in user(s)
15+
return Optional.of(Arrays.asList("mark1990", "adrianm", "dan555").get(new Random().nextInt(3)));
1516
}
1617

1718
}

HibernateSpringBootAudit/src/main/java/com/bookstore/entity/Author.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.bookstore.entity;
22

3-
import java.io.Serializable;
43
import java.util.ArrayList;
54
import java.util.Iterator;
65
import java.util.List;
@@ -9,7 +8,7 @@
98
import javax.persistence.OneToMany;
109

1110
@Entity
12-
public class Author extends BaseEntity<String> implements Serializable {
11+
public class Author extends BaseEntity<String> {
1312

1413
private static final long serialVersionUID = 1L;
1514

HibernateSpringBootAudit/src/main/java/com/bookstore/entity/BaseEntity.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.bookstore.entity;
22

3+
import java.io.Serializable;
34
import java.time.LocalDateTime;
45
import javax.persistence.EntityListeners;
56
import javax.persistence.GeneratedValue;
@@ -14,7 +15,7 @@
1415

1516
@MappedSuperclass
1617
@EntityListeners({AuditingEntityListener.class})
17-
public abstract class BaseEntity<U> {
18+
public abstract class BaseEntity<U> implements Serializable {
1819

1920
@Id
2021
@GeneratedValue(strategy = GenerationType.IDENTITY)

HibernateSpringBootAudit/src/main/java/com/bookstore/entity/Book.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
package com.bookstore.entity;
22

3-
import java.io.Serializable;
43
import javax.persistence.Entity;
54
import javax.persistence.FetchType;
65
import javax.persistence.JoinColumn;
76
import javax.persistence.ManyToOne;
87

98
@Entity
10-
public class Book extends BaseEntity<String> implements Serializable {
9+
public class Book extends BaseEntity<String> {
1110

1211
private static final long serialVersionUID = 1L;
1312

HibernateSpringBootAudit/src/main/java/com/bookstore/repository/AuthorRepository.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
@Repository
88
public interface AuthorRepository extends JpaRepository<Author, Long> {
99

10-
public Author findByName(String name);
10+
Author findByName(String name);
1111
}

HibernateSpringBootAudit/src/main/java/com/bookstore/service/BookstoreService.java

+7-8
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@ public BookstoreService(AuthorRepository authorRepository) {
2020
@Transactional
2121
public void registerAuthor() {
2222

23-
Author a1 = new Author();
23+
var a1 = new Author();
2424
a1.setName("Quartis Young");
2525
a1.setGenre("Anthology");
2626
a1.setAge(34);
2727

28-
Author a2 = new Author();
28+
var a2 = new Author();
2929
a2.setName("Mark Janel");
3030
a2.setGenre("Anthology");
3131
a2.setAge(23);
3232

33-
Book b1 = new Book();
33+
var b1 = new Book();
3434
b1.setIsbn("001");
3535
b1.setTitle("The Beatles Anthology");
3636

37-
Book b2 = new Book();
37+
var b2 = new Book();
3838
b2.setIsbn("002");
3939
b2.setTitle("A People's Anthology");
4040

41-
Book b3 = new Book();
41+
var b3 = new Book();
4242
b3.setIsbn("003");
4343
b3.setTitle("Anthology Myths");
4444

@@ -52,14 +52,13 @@ public void registerAuthor() {
5252

5353
@Transactional
5454
public void updateAuthor() {
55-
Author author = authorRepository.findByName("Mark Janel");
56-
55+
var author = authorRepository.findByName("Mark Janel");
5756
author.setAge(45);
5857
}
5958

6059
@Transactional
6160
public void updateBooks() {
62-
Author author = authorRepository.findByName("Quartis Young");
61+
var author = authorRepository.findByName("Quartis Young");
6362
List<Book> books = author.getBooks();
6463

6564
for (Book book : books) {

HibernateSpringBootAudit/src/main/java/com/bookstore/service/UserService.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
public class UserService {
99

1010
public String getCurrentUserName() {
11-
// use Spring Security to retrive the current user
12-
return Arrays.asList("mark1990", "adrianm", "dan555")
13-
.get(new Random().nextInt(3));
11+
// use Spring Security to retrieve the current user
12+
return Arrays.asList("mark1990", "adrianm", "dan555").get(new Random().nextInt(3));
1413
}
1514
}

HibernateSpringBootAudit/src/main/resources/application.properties

-12
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
spring:
2+
datasource:
3+
url: jdbc:mysql://localhost:3306/bookstoredb?createDatabaseIfNotExist=true&useLegacyDatetimeCode=false
4+
username: root
5+
password: gigipedala
6+
7+
jpa:
8+
hibernate.ddl-auto: create-drop
9+
show-sql: true
10+
properties:
11+
hibernate:
12+
dialect: org.hibernate.dialect.MySQL5Dialect
13+
jdbc:
14+
time_zone: UTC
15+
open-in-view: false
16+
17+
logging:
18+
pattern:
19+
console: "%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n"
20+
level:
21+
root: INFO
22+
org.springframework: DEBUG
23+
com.apress.cems.reactive: DEBUG

0 commit comments

Comments
 (0)