JasonS
JasonS

Reputation: 455

How to find the code usage of the .properties resource(i18n) key in intellij

I have a xx.properties file which stores the key/value (used for i18n). I know in Eclipse, if i click ctrl + 'key', it will jump to the java code where uses this key.

My question is:

Upvotes: 0

Views: 195

Answers (1)

Use Alt-F7. This is the general "Where is this used" key stroke for IntelliJ.

Note that IntelliJ grays an entry out if it thinks that it is not used in your current source code.

Upvotes: 1

Related Questions