IT Gift
IT Gift
  • 28
  • 13 906
Docker AWS EC2 Deployment
#Docker #AWS #EC2 #Deployment
มุมมอง: 118

วีดีโอ

Docker Compose. Java Spring Boot Rest API
มุมมอง 569ปีที่แล้ว
#Docker #Compose #Java #Spring #Boot #RestAPI
Git Merge / Git Rebase
มุมมอง 34ปีที่แล้ว
#GitMerge #GitRebase
Git Cherry Pick
มุมมอง 19ปีที่แล้ว
#Git #CherryPick
Git Rebase
มุมมอง 9ปีที่แล้ว
#Git #Rebase
Full Stack Real Time Chat: Java Spring Boot, Web Sockets, React JS
มุมมอง 11Kปีที่แล้ว
#FullStack #Chat #Java #Spring #Boot #WebSockets #ReactJS
SOLID Principles with Examples and Explanation
มุมมอง 62ปีที่แล้ว
#SOLID #principles #examples #explanation #SingleResponsibility #OpenClosed #InterfaceSegregation #DependencyInversion
Java Spring Boot + React JS (Full Stack Web Application) (Part II)
มุมมอง 426ปีที่แล้ว
#Java #React #JS #Full #Stack #Web #App
Java Spring Boot Rest API (Full Stack Web Application) (Part I)
มุมมอง 1.5Kปีที่แล้ว
#Java #Spring #Boot #Rest #API
Java Stream API
มุมมอง 32ปีที่แล้ว
#Java #Stream #API
Run PostgreSQL from Docker
มุมมอง 58ปีที่แล้ว
#PostgreSQL #Docker
SQL Core
มุมมอง 28ปีที่แล้ว
#SQL #Core
Equals and HashCode (Java)
มุมมอง 13ปีที่แล้ว
#Equals #HashCode #Java
Java Building own LinkedList
มุมมอง 19ปีที่แล้ว
#Java #Building #LinkedList
Java Collections
มุมมอง 33ปีที่แล้ว
#Java #Collections
Multithreading (Java). Producer - Consumer
มุมมอง 40ปีที่แล้ว
Multithreading (Java). Producer - Consumer
Palindrome Task Solution
มุมมอง 20ปีที่แล้ว
Palindrome Task Solution
BPMN Explanation
มุมมอง 23ปีที่แล้ว
BPMN Explanation
UML Class Diagrams
มุมมอง 66ปีที่แล้ว
UML Class Diagrams
Adapter Design Pattern
มุมมอง 22ปีที่แล้ว
Adapter Design Pattern
Strategy Design Pattern
มุมมอง 11ปีที่แล้ว
Strategy Design Pattern
Postman Practice using Rest API and JWT Authorization
มุมมอง 39ปีที่แล้ว
Postman Practice using Rest API and JWT Authorization
Observer Design Pattern
มุมมอง 14ปีที่แล้ว
Observer Design Pattern
Excel (Google Sheet) Automation with Open AI API (GPT) (3 mins)
มุมมอง 75ปีที่แล้ว
Excel (Google Sheet) Automation with Open AI API (GPT) (3 mins)
Facade Design Pattern
มุมมอง 19ปีที่แล้ว
Facade Design Pattern
Singleton Design Pattern
มุมมอง 18ปีที่แล้ว
Singleton Design Pattern
Builder Design Pattern (7 mins)
มุมมอง 20ปีที่แล้ว
Builder Design Pattern (7 mins)
Factory Design Pattern (5 mins)
มุมมอง 38ปีที่แล้ว
Factory Design Pattern (5 mins)

ความคิดเห็น

  • @user-sf1sv3xh5w
    @user-sf1sv3xh5w 2 หลายเดือนก่อน

    Hi thank you for your video. It helps a lot. I use Gradle instead of Maven for my project. I was trying to add this real time chat feature to my project, but I get this error message. "EventSource's response has a MIME type ("application/json") that is not "text/event-stream". Aborting the connection." And it seems that WebSocket connection fails because of this error. I modified my WebConfig and WebsocketConfig accordingly, but I still have the same error. Do you have any suggestions or idea what might have triggered this issue?

    • @user-sf1sv3xh5w
      @user-sf1sv3xh5w 2 หลายเดือนก่อน

      I don't exactly know, but I figured it out. my jwt token was the issue so I implemented HandshakeInterceptor and created WebsocketHandshakeInterceptor. Again, thanks for your video as it helped me to gain much insight of overall websocket and how it works. thanks!!

  • @insane00gaming86
    @insane00gaming86 3 หลายเดือนก่อน

    Not working

  • @mikhaelvanwellman28
    @mikhaelvanwellman28 4 หลายเดือนก่อน

    my sockJs error global why ??

    • @emersonperalesvillanueva8568
      @emersonperalesvillanueva8568 4 หลายเดือนก่อน

      I'm getting the same, why? I do not get the solution :c

    • @msbeigi83
      @msbeigi83 หลายเดือนก่อน

      @@emersonperalesvillanueva8568 Are you guys using vite?

  • @damakavitha7385
    @damakavitha7385 5 หลายเดือนก่อน

    I got an error

  • @vienong2772
    @vienong2772 6 หลายเดือนก่อน

    error: App.js:23 GET localhost:8080/ws/info?t=1707999477305 404 (Not Found) I don't know why that happens. Help!!

  • @thatsweirdo6664
    @thatsweirdo6664 9 หลายเดือนก่อน

    Sir the connection is not established yet error is coming

    • @CristianDiazPerdomo
      @CristianDiazPerdomo 7 หลายเดือนก่อน

      I had the same error it was due to client variable need time because it's async. useEffect(() => { if (client?.connect === true) return; const socket = new SockJS("localhost:8080/ws"); messages; if (client === null || client?.connected) setClient(Stomp.over(socket)); }, []); useEffect(() => { if (client !== null) { client.connect({}, () => { client.subscribe("/topic/messages", (message) => { const receivedMessage = JSON.parse(message.body); console.log(messages); setMessages((messages) => [...messages, receivedMessage]); }); }); setStompClient(client); return () => { client.disconnect(); }; } }, [client]);

  • @user-iw2nx9pp5i
    @user-iw2nx9pp5i 9 หลายเดือนก่อน

    Thank you so much!!! None of the other videos worked for me. Your worked like a charm!

  • @user-qb9xx4kh5s
    @user-qb9xx4kh5s 11 หลายเดือนก่อน

    Can you do it for private message?

    • @itgift-ht1ro
      @itgift-ht1ro 11 หลายเดือนก่อน

      sure

    • @user-qb9xx4kh5s
      @user-qb9xx4kh5s 11 หลายเดือนก่อน

      @@itgift-ht1ro are you gonna make a video of it or you will just update the repository on GitHub?

  • @tmagan0836
    @tmagan0836 ปีที่แล้ว

    Nice video! It would be awesome if you also add a link to the github repository. Really good content tho keep it up!

    • @itgift-ht1ro
      @itgift-ht1ro ปีที่แล้ว

      Sure, thank you! github.com/Algol22/JavaWebSocketReact