I have a problem in IntelliJ 12 to enable JPQL / HQL auto completion support. Whenever I edit a request, IDEA does not offer me anything on Ctrl-Space.
I have the following plugins:
- Database
- Hibernate
- Conservation Structures.
- Java EE
- SQL
Suppose we have this entity.
@Entity public class SubKonto extends PersistentEntity implements Serializable { @OneToOne private Hierarchieknoten hierarchieknoten; @ManyToOne private SchnittstellenKonfiguration schnittstellenKonfiguration; @Column private String kontoNummer; }
If I write a JP request myself, I saw that IntelliJ supports autocomplete.
"from Sub
with ctrl-space ends before
"from SubKonto
Then from
"from SubKonto sk where sk.k
with ctrl-space ends before
"from SubKonto sk where sk.kontoNummer
Can someone tell me how to turn it on ?,
source share