atg-dynamo

ATG-JBoss project in eclipse

ぐ巨炮叔叔 提交于 2019-12-13 04:42:30
问题 I have created a sample ATG project in eclipse. This is the way I followed. File->New->Project-> ...atg wizards->New ATG Module Next-> put project name as MyFirstATGApp and select ed root diretory as C:\ATG\ATG10.1.2 Next->Default atg adaptive senario engine is selected. Next->Next-> changed "Default output folder" value as " MyFirstATGApp /classes" Next->set J2EE application Name= MyFirstATGApp-j2ee, Web application name= MyFirstATGApp-web, Context-root= MyFirstATGApp and selected Target

How do you organise your ATG projects?

依然范特西╮ 提交于 2019-12-12 08:31:00
问题 If you develop for ATG Dynamo, how do you structure your modules and dependencies? How do you structure the projects? source directories, JARs configs etc. How do you build and deploy? What tools do you use? 回答1: We have a monolithic architecture with a single ATG module. We originally developed this site with JHTML and have since created a (monolithic) J2EE web app within this ATG module and converted all of our JHTML to JSP. Our project on disk looks like this: root deploy class (compile

Need to Check whether password contains same sequence of characters of UserName in JAVA/ATG

匆匆过客 提交于 2019-12-11 03:52:59
问题 I am working on an ATG project. My requirement is "the password should not contain the same sequence of characters as in UserName". For eg. If the userName is abcdef@123.com. Then pw should not be def@123.com The pw should not include same SEQUENCE of characters. It can have the characters as in userName. But the ordering/sequence of characters shouldnot be the same. How can I check this? Thanks, Treesa 回答1: You can do the following to check if the password contains any sequence of the

What does it mean by $scope=global in ATG..?

自闭症网瘾萝莉.ら 提交于 2019-12-04 16:10:28
According to the documentation, Global: Component is shared among all users. Session: Separate instances of the component are provided to each user. Is that means, for global component, there is only one instance for the whole nucleus system.. If this is true, how does it valid for components like ‘/atg/dynamo/transaction/TransactionManager’ and most of the droplets..? Because those components are used by several users at a single moment Edited: I understood the ‘TransactionManager’ behavior. According to the definition there should be single transaction manager, and he should keep transaction

How do you organise your ATG projects?

萝らか妹 提交于 2019-12-04 03:06:59
If you develop for ATG Dynamo, how do you structure your modules and dependencies? How do you structure the projects? source directories, JARs configs etc. How do you build and deploy? What tools do you use? We have a monolithic architecture with a single ATG module. We originally developed this site with JHTML and have since created a (monolithic) J2EE web app within this ATG module and converted all of our JHTML to JSP. Our project on disk looks like this: root deploy class (compile java to here) config (primary configpath) docroot (JHTML docroot) dev (configpath for dev environment) test