Are you sure that you can provide nested bean tags there?
Can anybody help me?
Where s2 object is stored in heap or in scp area?
Will there be any locks ?
Stringbuffer objects are also Store in scp?

Pls tell me how to fix it!!
https://stackoverflow.com/questions/6021899/eclipse-maven-multiple-annotations-found-at-this-line/18800625#18800625 check this one
I’m trying to import a maven project into Eclipse.
I’m using Helios. I’ve downloaded m2eclipse. I’ve imported the project.
But I’am having so much troubles to compile the project.
The full project

https://stackoverflow.com/questions/6021899/eclipse-maven-multiple-annotations-found-at-this-line/18800625#18800625 check this one
Tq!!
I followed but not working

Tq!!
I followed but not working
Are you sure that you can provide nested bean tags there? Is that allowed?

Are you sure that you can provide nested bean tags there? Is that allowed?
Means!!
Can you elaborate it!!
String s2=s1;
Where s2 object is stored in heap or in scp area?

Means!!
Can you elaborate it!!
@patrikalb 🤝🤝🤝🤝
Fixing now!!
I have restarted system!!
I followed those steps!!
I am belongs to civil engineering but I am swich from this ,and Learning java .l have much interested I java learning

String s1=new String (“abc”);
String s2=s1;
Where s2 object is stored in heap or in scp area?
Dynamic allocation is related to heap memory allocation

Dynamic allocation is related to heap memory allocation
In s1 content is there or
Only object assigned

@patrikalb 🤝🤝🤝🤝
Fixing now!!
I have restarted system!!
I followed those steps!!
Great!! 👍
I want to learn Java spring boot
I have fetch query using named jdbc template. This query is called by multiple apis async fashion because of this result is fetched very late. As we are using azure mysql mangament studio. Will there be any locks ?
Can some one please post any suggestions
https://thinkingbell.myinstamojo.com/shop
1. Free Java Language Handwritten Notes
2. Free JavaScript Printed Notes
3. Free jQuery Printed Notes
4. Free Bootstrap Printed Notes
5. C Language Handwritten Notes
6. C-Sharp Language Handwritten Notes
7. C++ Language Handwritten Notes
8. Hibernate Framework Handwritten Notes
9. HTML, CSS and JavaScript Handwritten Notes
10. Oracle Handwritten Notes
11. PHP, jQuery, MySQL, Joomla, Drupal, JavaScript, Ajax Handwritten Notes
12. Spring Framework Handwritten Notes
13. SQL and PLSQL Handwritten Notes
14. Spring Boot and Microservices Printed Notes
15. Python Language Printed Notes
16. Django Printed Notes
17. Core Java Printed Notes
18. Java 10-14 Features Printed Notes
19. Hibernate Framework Printed Notes
20. Web Services Printed Notes
21. Spring Framework Printed Notes
23. TypeScript Printed Notes
Programming Handwritten Notes

Hello,
I want to learn Java spring boot
Learn it who stops you

Hello,
I want to learn Java spring boot
are you looking for resources

Anyone knows best approach to get image from user/profile picture. I have a spring boot api which takes username, mobile and few other details to create profile…. I have to take image as well.. Please guide how to take image and where to save and how to display it then in Angular form
You can store it as a multipart value or you can convert it into base64
public static void main(String[] args) {
StringBuffer sb1=new StringBuffer(“abc”);
StringBuffer sb2=new StringBuffer(“xyz”);
StringBuffer sb3=new StringBuffer(“abc”);
sb1=sb2;
sb2=sb3;
sb3=sb1;
System.out.println(sb1==sb2);
System.out.println(sb3==sb1);
System.out.println(sb2==sb3);
System.out.println(sb1);
System.out.println(sb2);
System.out.println(sb3);
}
}
why
false
true
false
But not
true
true
true

class HelloWorld {
public static void main(String[] args) {
StringBuffer sb1=new StringBuffer(“abc”);
StringBuffer sb2=new StringBuffer(“xyz”);
StringBuffer sb3=new StringBuffer(“abc”);
sb1=sb2;
sb2=sb3;
sb3=sb1;
System.out.println(sb1==sb2);
System.out.println(sb3==sb1);
System.out.println(sb2==sb3);
System.out.println(sb1);
System.out.println(sb2);
System.out.println(sb3);
}
}
why
false
true
false
But not
true
true
true
How answer is false true false
== operator is content comparison or reference
Comparison
In stringbuffer .equals method is not overridden then object class .equals() method will be called.
It is reference comparison

How answer is false true false
== operator is content comparison or reference
Comparison
In stringbuffer .equals method is not overridden then object class .equals() method will be called.
It is reference comparison
Read about string pool

Stringbuffer objects are also Store in scp?
No, but s buffer and so on s builder is an abstraction over string

Ok
i think id lied to you, its not about strings, it`s abount pointers only

Ok
you can replace string buffers with just new Object, and have same result

And I want to saveMessage according to user by their ids