Posts by Douglas Cardoso • 56 points
6 posts
-
1
votes1
answer106
viewsA: Java class version
Hello, I don’t know anything that answers what you want and I can’t see a use for it either. The question is do you really need it? If you want to convert your class you can use git, Mercurial or…
-
0
votes1
answer62
viewsA: Can you block external access in an application?
If I understand your point of view correctly, the right thing to do is to create rules in your network’s firewall to limit access. Hugs
-
0
votes1
answer112
viewsA: Cloning a class
Looking at what you’ve done, there’s nothing wrong. Just two remarks: I understand that it would not be necessary to implement the Cloneable interface in the Diasdasemana class as well; and by…
-
1
votes2
answers679
viewsA: Java generate JSON from a string
If you have already done the method that returns a String, just put it in JSON format. An alternative would be to generate a JSON, from an object, see below: If you are using Maven in your project,…
-
2
votes1
answer361
viewsA: Java Web Authentication Control
An alternative to apache Shiro is spring-security, a very mature project, with its last release in version 4.0.4. Here are two links that can help you: 1- http://projects.spring.io/spring-security/…
-
0
votes1
answer57
viewsA: How to send input from a java app to a php file
Hello, You will need to create a php webservice to receive this value and then manipulate it as you wish. There is a post that talks about this: How to make a webservice in php? In addition, you can…