Any mongo developer here?

|
hey_rmi 2022-07-02 21:33:34
Okay
Malli_Cse 2022-07-02 22:11:52
Anyone having good idea about jacoco and sonar for doing code coverage and code Quality?
TeraYRYO 2022-07-02 22:50:21
Hello anyone have idea regarding ibm mq? Java spring jms?
TeraYRYO 2022-07-02 22:50:27
Plz
Sandy 2022-07-03 04:38:14
TeraYRYO 2022-07-02 22:50:21
Hello anyone have idea regarding ibm mq? Java spring jms?

Ping your issue here

Me Me 2022-07-03 04:47:46
Please suggest one
Me Me 2022-07-03 04:47:46
Need original documentation
Me Me 2022-07-03 04:47:46
Can anyone tell best website to learn springBoot
Prudhvi . 2022-07-03 05:07:18
Sakshi 2022-07-02 19:36:10
What’s wrong in that code ..I want sorted array only

Take tamp as variable

Prudhvi . 2022-07-03 05:08:00
Remove 14 line if condition
P S 2022-07-03 05:33:49
any mongo developer here?
Neslihan 2022-07-03 06:32:30
Hello guys how can I write a logic to avoid duplicate in user input phone number ?
Hungry Matter 2022-07-03 07:51:22
how to start this project?
I started docker, but I never worked with Kotlin
https://github.com/vdsirotkin/dickfind2bot

I installed sdk, kotlinc, java, spring, but I didn’t understand how to compile all this into 1 file

kotlinc Dickfind2botApplication.kt -d hello.jar gives what is in the picture

Hungry Matter 2022-07-03 07:51:34
springbootmicroservices-66056.jpg

SHIVA K 2022-07-03 07:53:35
Neslihan 2022-07-03 06:32:30
Hello guys how can I write a logic to avoid duplicate in user input phone number ?

boolean current = false;

for (int i = 0; i < dogs.size(); i ) {
System.out.println(“Dog name: “);
String dogName = scan.nextLine().toLowerCase();
if (dogName.equals(dogs.get(i).getName())) {
auction.add(new auction(dogName));
System.out.printf(dogName ” has been put up for auction in auction #%d”, i);
System.out.println();
current = true;

}//code below does not work
if (auction.contains(dogName)) {
System.out.println(“Error: this dog is already up for auction.”);
}

}
if (current == false) {
System.out.println(“Error: no such dog in the register”);
}

Yogesh 2022-07-03 08:24:18
Yogesh 2022-07-02 18:59:32
Hi All… has anyone given coding game test for CA Bank Singapore recently ??

Needs input if anyone has attended… plz ??

Neslihan 2022-07-03 09:07:11
SHIVA K 2022-07-03 07:53:35
boolean current = false;

for (int i = 0; i < dogs.size(); i ) {
System.out.println(“Dog name: “);
String dogName = scan.nextLine().toLowerCase();
if (dogName.equals(dogs.get(i).getName())) {
auction.add(new auction(dogName));
System.out.printf(dogName ” has been put up for auction in auction #%d”, i);
System.out.println();
current = true;

}//code below does not work
if (auction.contains(dogName)) {
System.out.println(“Error: this dog is already up for auction.”);
}

}
if (current == false) {
System.out.println(“Error: no such dog in the register”);
}

What about to do thüs for 8 digits phone number

Neslihan 2022-07-03 09:07:45
İf that phone num exist, it should gimme message if it s not it should let me create
SHIVA K 2022-07-03 09:08:33
You can use regular expression and set length in entity class
Neslihan 2022-07-03 09:09:06
SHIVA K 2022-07-03 09:08:33
You can use regular expression and set length in entity class

Can gou show me here please ?🌸 🙏🏻

SHIVA K 2022-07-03 09:10:20
@Size(min=0,max=8)
private String mobileNo;
Rotolanna 2022-07-03 09:11:19
Hi 🙂 I’d like to encode the sign ” ” (I’m using the RestTemplate class ) but I don’t get a “+”, have u already faced this issue with spring boot?
Neslihan 2022-07-03 09:12:07
SHIVA K 2022-07-03 09:10:20
@Size(min=0,max=8)
private String mobileNo;

And it should not create the same number again

SHIVA K 2022-07-03 09:12:18
B capital or small
Rotolanna 2022-07-03 09:13:55
Capital
SHIVA K 2022-07-03 09:14:14
@UniqueElements
private List<Integer> numbers;
SHIVA K 2022-07-03 09:14:54
Rotolanna 2022-07-03 09:13:55
Capital

I think + i used

Rotolanna 2022-07-03 09:15:53
I need this for an URL
Rotolanna 2022-07-03 09:16:44
On my query parameters
Rotolanna 2022-07-03 09:18:05
java – RestTemplate.exchange() does not encode ‘ ‘? – Stack Overflow
https://stackoverflow.com/questions/51676060/resttemplate-exchange-does-not-encode

RestTemplate.exchange() does not encode ‘ ‘?Stack Overflow
The RestTemplate.exchange() will encode all the invalid characters in URL but not as is a valid URL character. But how to pass a in any URL’s query parameter?
|