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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top