Posts by Joel Lobo • 95 points
5 posts
-
1
votes1
answer234
viewsA: how to create an arraylist of a class that has another arraylist as parameter?
Class Entra: package org.example; import java.util.ArrayList; import java.util.Date; import java.util.List; public class Entra extends Fluxo { private int periodo; private boolean fixo; public…
-
1
votes1
answer35
views -
1
votes1
answer118
viewsA: How to show the project version on the JSP page of a Spring MVC Web application
In the archive pom.xml, add the following setting: <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory>…
-
0
votes3
answers128
viewsA: Static site, set default HTML markup for all pages
Place the content you need to share between other HTML pages in a separate HTML file and load the content with Javascript. //index.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0…
-
1
votes2
answers83
viewsA: Sort files in shell
Commando: find . -name '*.py' -type f | xargs du -a | sort -n -r | head -n 1
shell-scriptanswered Joel Lobo 95