Posts by Bruno Pinho • 28 points
3 posts
-
0
votes1
answer34
viewsQ: Lock problem on the base + Springboot
Good morning, I created a Spring Boot application and through the properties I enabled the file base to check if it is necessary to upgrade the database structure. The problem is that the first step…
-
-1
votes1
answer61
viewsA: I need to create an Arraylist in Java
First separate the two classes. A class for Book containing all the attributes of a book and a class for Library with the attribute ArrayList<Livro> livros = new ArrayList<>(); From…
-
0
votes1
answer166
viewsA: How to create an Arraylist with constructor method with String
public AcademicLibrary(String name, String description, String creationDate) { this.name = name; this.description = description; this.creationDate = creationDate; ArrayList<Publication>…