Hola buenas tardes, estoy empezando con spring boot, y necesito hacer una busqueda por email, con findOne, y no encuentro la manera de pasarle el dato, alguien me ayuda?

|
Debiprasad Dash 2022-07-11 17:09:22
Which IDE eclipse or sts
J8330 Vishnu muniganti 2022-07-11 17:09:36
ok
J8330 Vishnu muniganti 2022-07-11 17:09:38
tq
Debiprasad Dash 2022-07-11 17:10:29
You are welcome bro
Varun Varma 2022-07-11 17:23:05
Hello guys,I am a 4 years experienced java developer, is it advisable to transition to AEM?
Tona_Orn 2022-07-11 17:24:01
Hello everyone I have one question related to consuming SOAP web service in Spring Boot, and my SOAP request like the image below. How can I call this SOAP request in Spring Boot using WebserviceTemplate?
Tona_Orn 2022-07-11 17:24:14
springbootmicroservices-67630.jpg

SexiestDude 2022-07-11 17:42:03
G Vk 2022-07-11 16:59:51
List<Integer> elements = new ArrayList<Integer>(); elements.add(2); elements.add(30); elements.add(10); elements.add(34); elements.add(90); elements.add(100); elements.add(8); need to remove all element which are greater than 30 using lambda expression without using temprorary list

elements.removeIf(e -> (e > 30));

Use this bro…

H 2022-07-11 17:43:57
sushant_padwal 2022-07-11 10:58:24
Facing this problem 😣

Try spring.io in browser

SexiestDude 2022-07-11 17:44:24
G Vk 2022-07-11 16:59:51
List<Integer> elements = new ArrayList<Integer>(); elements.add(2); elements.add(30); elements.add(10); elements.add(34); elements.add(90); elements.add(100); elements.add(8); need to remove all element which are greater than 30 using lambda expression without using temprorary list

public static void main(String[] args) {
// TODO Auto-generated method stub

List<Integer> elements = new ArrayList<Integer>();
elements.add(2);
elements.add(30);
elements.add(10);
elements.add(34);
elements.add(90);
elements.add(100);
elements.add(8);

elements.removeIf(e -> (e > 30));
elements.forEach(e ->{System.out.println(e);});

}

. 2022-07-11 17:46:18
Anyone knows mongodb kindly text me I need help
SexiestDude 2022-07-11 17:50:13
. 2022-07-11 17:46:18
Anyone knows mongodb kindly text me I need help

Bro ask here or dm me…. But m going outside….will answer u if possible

G Vk 2022-07-11 18:24:34
SexiestDude 2022-07-11 17:44:24
public static void main(String[] args) {
// TODO Auto-generated method stub

List<Integer> elements = new ArrayList<Integer>();
elements.add(2);
elements.add(30);
elements.add(10);
elements.add(34);
elements.add(90);
elements.add(100);
elements.add(8);

elements.removeIf(e -> (e > 30));
elements.forEach(e ->{System.out.println(e);});

}

Thank you

Vs 2022-07-11 18:29:15
Is log2base2 is paid?
krishnamoorthi1804 2022-07-11 18:39:23
J8330 Vishnu muniganti 2022-07-11 17:06:42
if i try to open source file showing error like this
any one can help me

Eclipse-ல் java source-file add செய்வது எப்படி(how to add java source file in eclipse IDE)

Eclipse-ல் java source-file add செய்வது எப்படி(how to add java source file in eclipse IDE)Ganesh V Andimadam
வணக்கம் நண்பர்களே இன்த பத்தியில் java source file-ஐ eclipse-ல் add செய்து, java-வினுடைய codes-ஐ எவ்வாறு பார்ப்பது என்று பார்ப்போம். step : 1 உங்களுடைய கணினியில் என்ன version java install பண்ணிவுள்ள…
venkat Rao 2022-07-11 20:23:37
Gcp course 2022 available
sonu28sharma99 2022-07-11 20:48:38
Anyone knows how to write junit of httpAuth class?
sonu28sharma99 2022-07-11 20:50:24
springbootmicroservices-67659.jpg

TaToo_04 2022-07-11 21:10:02
springbootmicroservices-67664.jpg
Hola buenas tardes, estoy empezando con spring boot, y necesito hacer una busqueda por email, con findOne, y no encuentro la manera de pasarle el dato, alguien me ayuda? este es mi codigo.
Frenando yassine 2022-07-11 23:56:48
Ramya 2022-07-11 16:46:15
https://youtu.be/xc6SXxPXHcg

Thanks 👍

beautifulcode01 2022-07-12 03:04:04
TaToo_04 2022-07-11 21:10:02
Hola buenas tardes, estoy empezando con spring boot, y necesito hacer una busqueda por email, con findOne, y no encuentro la manera de pasarle el dato, alguien me ayuda? este es mi codigo.

Please use English in this group

Priyam Agarwal 2022-07-12 03:58:57
does anyone know about logger?
Jitendra bansal 2022-07-12 05:00:10
Priyam Agarwal 2022-07-12 03:58:57
does anyone know about logger?

Yes bhai

sushant_padwal 2022-07-12 06:11:26
springbootmicroservices-67689.jpg
Anyone please help me ,I am Facing this issue 😔
sushant_padwal 2022-07-12 06:11:48
Unable to create spring starter project
MrStaudinger 2022-07-12 06:41:08
I want my webpage to reflect data changes dynamically, without me refreshing the page.

I am using spring boot, to create a webapp, where the data (string value) is passed onto the html using @Controller method.

However, this data is dynamic, and changes value every second.

But, on my html page, it only shows that data “at that instant” and does not change automatically.

If i refresh my page, then i do get the new data passed, at that instant.

Backhere 2022-07-12 06:46:38
MrStaudinger 2022-07-12 06:41:08
I want my webpage to reflect data changes dynamically, without me refreshing the page.

I am using spring boot, to create a webapp, where the data (string value) is passed onto the html using @Controller method.

However, this data is dynamic, and changes value every second.

But, on my html page, it only shows that data “at that instant” and does not change automatically.

If i refresh my page, then i do get the new data passed, at that instant.

websocket

MrStaudinger 2022-07-12 07:21:39
Backhere 2022-07-12 06:46:38
websocket

I checked a video on this, https://youtu.be/n6ZqOwreFTA

Up until now, i was using multiple .addAttributes() to send data from backend to html

Implementing Web Sockets with Spring Boot ApplicationYouTube
In this video, we’re going to implement Web Sockets using Spring Boot Application

GitHub Link: https://bit.ly/3dvLThS

Other Video:
———————————————————————–
Creating Golang Rest API with Mux and GORM – Complete Tutorial – https://youtu.be/KPftgI40WHI
Go / Golang Full Course for Beginners | 2021 – https://youtu.be/1NF2LtWbA1g
Implementing JWT (JSON Web Tokens) with Spring Security in Springboot App – https://youtu.be/lA18U8dGKF8
Skaffold Tutorial – Easy Kubernetes Development workflow with Spring Boot – https://youtu.be/U6Hm5eoYZ5A
What is Kubernetes | Explained in detail with Architecture – https://youtu.be/gOOH51SdHgM
Kubernetes Components you need to know in 10 minutes – https://youtu.be/ivDzqrCfC2Y
Kubernetes Commands with Example – kubectl – https://youtu.be/iyNnXWw7wE8
Kubernetes YAML Configuration | Deployment and Service – https://youtu.be/ZaEuQA0RqiA
Implementing JWT (JSON Web Tokens) with Spring Security in Springboot App – https://youtu.be/lA18U8dGKF8

Follow us on :
——————————————————–
Website: http://www.dailycodebuffer.com/
Facebook: https://www.facebook.com/dailycodebuffer
Twitter: https://twitter.com/DailyCodeBuffer
Instagram: https://www.instagram.com/dailycodebuffer
GitHub: https://github.com/dailycodebuffer

My Laptop :
——————————————————
ASUS ROG Zephyrus G14, 14″ – https://amzn.to/3tMb1I6
ASUS ROG Zephyrus G14, 14″ (US) – https://amzn.to/3xa6X6m

Audio Gear :
——————————————————
Maono AU-A04 Condenser Microphone : https://amzn.to/32FOpwI
Maono AU-A04 Condenser Microphone (US) :https://amzn.to/3awzUj7

Secondary Audio :
——————————————————
Maono AU-100 Condenser Clip On Lavalier Microphone : https://amzn.to/3sGIbYd

Recommended Books:
——————————————————
Mastering Spring Boot 2.0 (Kindle): https://amzn.to/3tHJV4L
Mastering Spring Boot 2.0 (US) : https://amzn.to/3tHNUy5
Building Microservices(Kindle) : https://amzn.to/3gsA1jL
Building Microservices(US) : https://amzn.to/3dDnfNn
Spring Boot in Action : https://amzn.to/2Qo6YTM
Spring Boot in Action (US) : https://amzn.to/32DkeX9
Spring Microservices in Action : https://amzn.to/3gsA3rT
Spring Microservices in Action(US): https://amzn.to/32G3Hl7

Music:
——————————————————-
Hear the Noise (Sting): https://www.youtube.com/audiolibrary/music?nv=1
“Sound effects obtained from https://www.zapsplat.com“

#WebSockets #STOMP #Springboot #DailyCodeBuffer

MrStaudinger 2022-07-12 07:21:54
Now, what difference would the websocket make ?
MrStaudinger 2022-07-12 07:22:09
Will it be sending data continuously?
|