Posts by Luan Kevin Ferreira • 342 points
10 posts
-
1
votes2
answers260
viewsA: How to view front-end projects?
I found a nice article that suggests some rules for Versionar frontends, the article basically says the following: Given the importance of application installation requirements for installers, I…
-
5
votes2
answers260
viewsQ: How to view front-end projects?
How to view front-end projects? Semantic versioning brings the following approaches: MAJOR - when you make incompatible API changes MINOR - when you add functionality compatible with previous…
-
0
votes1
answer82
viewsA: Too Many open files AWS
I solved my problem with the following tutorial. https://easyengine.io/tutorials/linux/increase-open-files-limit/…
-
1
votes1
answer82
viewsQ: Too Many open files AWS
I am running my application on Amazon, I have deployed a version that separates log files by tenant and date, this has caused my environment to not accept more requests at some point, bursting an…
-
2
votes2
answers88
viewsA: Log into separate files with SLF4J in AWS
I solved the problem by defining the path that matches the structure that the logs are stored in Amazon Tomcat. I made the following change to my filter configuration file.…
-
2
votes2
answers88
viewsQ: Log into separate files with SLF4J in AWS
Someone has already implemented log using SLF4J to enable the application to separate files by tenant in Amazon environment? I made this implementation in my application, on Tomcat running local the…
-
1
votes2
answers854
viewsA: package does not exist (Maven)
I added the following settings to my pom.xml. <project> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>…
-
0
votes2
answers854
viewsA: package does not exist (Maven)
The way I solved my problem was to move my source to: src/main/wsdl for: src/main/java/wsdl for some reason Maven searches by default the sources in (src/main/java), whatever is outside of this he…
-
1
votes2
answers854
viewsQ: package does not exist (Maven)
Let’s contextualize the problem: I have a project that consumes some Web Services, in this project I have separate source folders as suggested by Maven ex:(main/java test/java), the classes…
-
11
votes2
answers384
viewsQ: GMT returns -0306 instead of -0300, what is the reason?
Locale ptBR = new Locale("pt", "BR"); SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyy", ptBR); SimpleDateFormat iso = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.sssZ"); GregorianCalendar…