11

I am developing stomp+WebSocket using Intellij Idea. Now I need to know: how to search string from Intellij Idea global? For example, I got this error:

15:17:44.688]-[clientInboundChannel-59]-[org.springframework.web.socket.messaging.WebSocketAnnotationMethodMessageHandler]-{Searching methods to handle SEND /app/vehicle session=qnlerizz}
15:17:44.688]-[clientInboundChannel-59]-[org.springframework.web.socket.messaging.WebSocketAnnotationMethodMessageHandler]-{No matching methods.}

And I go to class WebSocketAnnotationMethodMessageHandler in spring-websocket.jar(Maven's jar) and find nothing about this string:No matching methods or Searching methods to handle. So I want to search where the message is. How to do?

What I have tried is the combination Ctrl + Shift + F but It does not work fine, I can't search from external jar. Double Shift can only search class.

ajaysinghdav10d
  • 1,581
  • 3
  • 22
  • 31
Dolphin
  • 13,739
  • 26
  • 110
  • 272

3 Answers3

15
  • Go Ctrl + Alt + Shift + N

or

Navigate -> Symbol.. from menu

  • Give your text to search.
Supun Wijerathne
  • 10,994
  • 9
  • 49
  • 82
0

In mac try Cmd + Shift + F, click scope, enter the keyword to search.

enter image description here

SANN3
  • 8,651
  • 6
  • 58
  • 89
0

I think this -> How to search for a string in JAR files can help you.

For external library(jar) you can use this way

Looks like 'Find in Path', 'Custom Scope' set to 'Project and Libraries'

WBLord
  • 792
  • 3
  • 23