This tutorial explains the step-by-step guide for configuring the database connection within your Eclipse environment. It is one of the advantage for the developer to check the database operations within Eclipse itself instead of checking with external tool. However, this would not have the advanced database operations, but will be handy for checking the updated …
Eclipse Tips
Eclipse Tips : Rename Variable (ALT + SHIFT + R)
Eclipse provides cool short cut key for renaming the variables across within a class or entire workspace. If you are not aware of this feature, you would use “find” option and replace the variable with new name. But, this will lead to a problem of not renaming all the references. You can easily rename the …
Eclipse Tips : How To Create Custom Code Template In Eclipse
One of the awesome feature in Eclipse is to create the custom code template to insert on the appropriate context. For example, there is default for loop template is exist in the Eclipse IDE, if you type for and press CTRL + SPACE, it would insert the complete for loop syntax with the condition. This …
Eclipse Tips : How To Add Server In Eclipse
This example illustrates how to add the server instance using the server wizard in Eclipse. One of the greatest advantage of using the IDE’s like Eclipse is that developers can use the server instances inside the editor itself without leaving the Eclipse environment. Eclipse itself supports the multiple server adapters to easily integrate the server …
JPA 2 MetaModel Generation using Eclipse
JPA 2.0 introduces the strongly typed Criteria API for going away with the Java Persistence Query (JQL) language. It comes with the metamodel for helping the typed objects. Every entity must have a meta model generated with underscore(_) added to its name. These objects will be referred in the Criteria API instead of using the …