212014Oct

Creating ATG Module From Scratch (without cim configuration)

Creating new atg project in eclipse is always a bummer for ATG beginners (was also for me). So here it is simply described how to create an ATG module from scratch. Prerequiste JDK7 ATG11.1 JBoss6+ Oracle 11G Eclipse With Installed ATG Plugin After getting all the required software installed open the eclispe and go with…

Read More
202014Oct

checkFormRedirect In ATG

checkFormRedirect() In ATG is : – method of GenericFormhandler class use to redirect to the SuccessURL if no form errors are found and to ErrorURL if form errors are found. also use to forward the request rather than redirect (based on userForwards parameter) internally use redirectOrForward method os same class. return true or false Use…

Read More
112014Oct

TreeSet Class in java

TreeSet Class In Java:- TreeSet is backed up by NavigableMap in Java and by default it uses TreeMap.The elements are stored in sorted, ascending order according to natural order with uniqueness. We can construct a TreeSet with constructor that give the collection with own rules for what order we want by using a Comparable or…

Read More
82014Oct

Repository API In ATG

Repository API In  ATG is : set of interfaces that are used for generic data access. use to manipulate repository items within Java code, including retrieving, creating, updating, deleting, and querying for items. provides generic data access calls that mask the underlying data store from the developer.(any database can be use as it convert the data…

Read More