Posts by Marco Blos • 156 points
4 posts
-
2
votes1
answer30
viewsA: Slow vraptor application after upgrading java and Tomcat
Apparently the problem was a filter in web.xml: <filter> <filter-name>compressionFilter</filter-name>…
-
0
votes1
answer30
viewsQ: Slow vraptor application after upgrading java and Tomcat
I am working on a legacy application and the application to the natural is already a little slow, I believe that by the way it was developed, but after updating the version of java 7 to java 8 and…
-
1
votes1
answer1831
viewsA: Sending of sms by Java
Looking here for Google, I found this implementation here: package br.com.meupackage; import org.apache.commons.mail.EmailException; import org.apache.commons.mail.SimpleEmail; public class…
-
1
votes2
answers104
viewsA: How does this function work within for?
What happens in this case is the following: Within the scope of for there is the variable i, which is initialized in 0 and increased with +1 every "turn" that occurs because of the loop of…