Quest Software – Database Development Best Practices Workflow

www.ToadWorld.com – In this episode of the Quest on the Board whiteboard series, Quest Manager of Systems Consulting Amit Parikh describes how development teams can meet the objectives of productivity and collaboration through a best practices workflow that builds quality, performance and maintainbility into their code.

PHP Development in India- Utilizing SugarCRM to Enhance Business Revenues

PHP development in India has gained world-wide popularity. The highly skilled software and web developers have contributed immensely in the success of the Indian IT industry. The world has embraced e-commerce and it is fast replacing the traditional cash-and- carry, business model. PHP development plays a crucial role is success of e-commerce. It is an … Read more

Liferay An Open Source Portal Development Platform

Liferay Portal has proved itself as the world’s leading open source portal platform in open source web development. Because of its reliability, cost effectiveness and capability to support the development of innovative internet-based applications, Liferay portal is increasingly being used globally across industries for their most challenging information technology needs. Liferay Portal is the only … Read more

Advanced Oracle PL/Sql: Programming With Packages

Product DescriptionSteven Feuerstein’s first book, Oracle PL/SQL Programming, has become the classic reference to PL/SQL, Oracle’s procedural extension to its SQL language. His new book looks thoroughly at one especially advanced and powerful part of the PL/SQL language — the package. The use of packages can dramatically improve your programming productivity and code quality, while … Read more

Learn Xcode Tools for Mac OS X and iPhone Development

ISBN13: 9781430272212 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product DescriptionThis book will give you a thorough grounding in the principal and supporting tools and technologies that make up the Xcode Developer Tools suite. Apple has provided a comprehensive collection of developer tools, and this is the first book to examine the … Read more

Review: NimbleKit development framework

Review: NimbleKit development framework MacNN has reviewed NimbleKit, a framework for Xcode that allows users to write simple apps for Apple handhelds without having to work in Objective C. It uses tools like HTML, JavaScript and CSS, including a JavaScript API that bridges between a user’s code and the iPhone OS. This allows the creation … Read more

Techniques For Integrating Hibernate Into Legacy Java Code – Part 1

If you’re like me, you spend a lot of time dealing with legacy code that, for whatever reason, does not take advantage of modern methodologies and libraries. I’ve taken over Java projects that contain hundreds of thousands of lines of code and not a single third-party jar other than a JDBC driver! One of the most common examples of this is the implementation of the data access layer. These days, the de facto methodology involves Hibernate and DAOs, usually managed by Spring.

This article will detail the steps I recently took to covert a large application from custom-written data access to Hibernate and Spring using the refactoring facilities in Eclipse. The key with this refactorization is to get the existing business logic code (Struts Actions, JSPs, Delegate classes, Business Service classes, etc. ) to access the datastore using Hibernate, managed by Spring, without manually changing any of that code directly. Part 1 will include creating the Hibernate data object classes, DAOs, and refactoring the existing code to work with these newly created types. Part 2 will conclude the project with integration of the Hibernate DAOs and wiring everything up with Spring.

Read more