Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
S Ry
Greenhorn
+ Follow
news
8
Posts
0
Threads
since Jun 29, 2016
Merit badge:
grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads
Recent posts by S Ry
struts spring hibernate example
try to build the application using maven command with -e flag. it will give you details of the root cause.
show more
8 years ago
Spring
Java Coding
I tested your code in Eclipse and got output. There was no error.
output from your code
Enter a number 5 Number is odd! Enter a number 6 Entered number is even!!
show more
8 years ago
Beginning Java
Eclipse, Maven & JDK 1.8.X
Can you please add JDK in System Variables and check whether it is working ?
show more
8 years ago
Other IDEs, Version Control
Spring Transaction-Programmatically
You said 2nd operation is failed but are you getting any exception ?
show more
8 years ago
Spring
struts spring hibernate example
You can check with mvn install -X to see what error details you get
show more
8 years ago
Spring
Different Possible Ways to Remove Duplicates From ArrayList
Apart from using HashSet you can use nested loops to check if there is any duplicate element in the arraylist.
public boolean hasDuplicatesInArrayList(ArrayList<String> list) { for (int i = 0; i < list.size(); i++) { for (int j = i + 1; j < list.size(); j++) { if (list.get(i) == list.get(j)) { return true; } } } return false; }
show more
8 years ago
Beginning Java
Data intensive processing
I would have used Stored Procedure with Transaction. In such situation Stored Procedure would be optimum.
show more
8 years ago
JDBC and Relational Databases