IntelliJ IDEA – the IDE for Professional Development in Java and Kotlin
A few weeks back we published a blog post and video about Code Completion. Now we're going to look at Code Generation, which compliments the completion features so nicely that in the past we put both sets of features into a single video. Code Generation is a really helpful feature in IntelliJ IDE…
IntelliJ IDEA already has impressive code generation capabilities: it can create getters and setters, equals(), hashCode(), toString(), and other methods, some of which are really simple to generate, and some are quite not. That's why the toString() method generator included the support for Veloc…
Try the last EAP of IntelliJ IDEA 9.0.2 to test new 'Generate' actions for Maven pom.xml editor. Type "Alt+Insert" to invoke the "Generate..." popup menu and select an action to run. IntelliJ IDEA actually runs live template inside to complete the code generation Let us know what you think abou…
With IntelliJ IDEA 9.0.2 you can enjoy editing web.xml with the new initial parameters support. IntelliJ IDEA now collects parameter names and is also aware of parameter values types. This allows the IDE to generate (with Alt-Insert), complete, highlight and validate them appropriately. Grab the …
The upcoming IntelliJ IDEA 8.1.1 includes a new option to generate separate XML mapping per entity.…
With IntelliJ IDEA you can easily generate multiple properties in your Spring application contexts. Just invoke Generate action by pressing Alt+Insert inside of a bean tag and select properties you want to generate.IntelliJ IDEA analyzes property types and invokes an appropriate Live Template for ea…
With IntelliJ IDEA you can quickly generate persistence mappings from any database schema. This feature is not so easy to find, so here's the tip:…
In IntelliJ IDEA HQL console can be used with pure JPA facets (as well as with Hibernate facets) to run JPAQL and HQL queries. All you need is Hibernate libraries and JDBC driver in a module classpath. If persistence.xml contains no Hibernate-specific database connection options, it should be mapped…
You can easily generate setter or constructor dependency to any Spring Bean from your application contexts. Just press Alt+Insert or select Generate from the Code menu, then select appropriate dependency type, and then select a bean.IntelliJ IDEA will correctly update your application context file a…