Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get annotation parameter with IntelliJ IDEA structural search

I'm trying to generate named queries for JPA entities using table name specified in @Table annotation with structural search and replace.

So to start I'm trying the following template:

@Table($param$ = $value$)
public class $clazz$

I have many classes like:

@Table(name = "Some Table")
public class SomeClass

and if I replace with the same template, it correctly grabs that $param$ is name, $clazz$ is correct class name, but $value$ is empty.

I'm using IDEA 12 build 128.101

What am I doing wrong? Thank you.

like image 472
Denis Tulskiy Avatar asked Oct 05 '22 17:10

Denis Tulskiy


1 Answers

I think this issue was already reported a long time ago, but no one seems to care about it. Try voting up the ticket in youtrack.

like image 169
zagyi Avatar answered Oct 10 '22 02:10

zagyi