Posts by W GDJ • 26 points
3 posts
-
0
votes1
answer64
viewsA: Access page in another project
You could generate a token (saved in shared database - or other form of intercom) in the application caller and send it (token) on request to the application called, that in turn through the filter…
-
0
votes1
answer209
viewsA: How to manipulate Database directly in Eclipse IDE?
Following link to eclipse plug that allows to use inside the eclipse database management tool Dbeaver.
-
1
votes2
answers634
viewsA: Sort objects according to name attribute using Collections.Sort() or Reverse()
import java.util.*; import java.lang.*; import java.io.*; // A class to represent a student. public class Student { int rollno; String name; String address; // Constructor public Student(int rollno,…