SlideShare une entreprise Scribd logo
1  sur  32
INTRODUCTION TO ATG
FRAMEWORK
AGENDA
What is E-Commerce & m-commerce
Different frameworks/platforms providing e-commerce solutions
Overview of Oracle ATG
Different modules provided by Oracle ATG Commerce
Nucleus
Different Oracle ATG Components
E-COMMERCE & M-COMMERCE
Distributing, Buying, Selling and marketing products and services
over internet through which transaction or terms of sale are
performed electronically.
Types of E-Commerce
 B2B(Applies to businesses buying from and selling to each other. E.g.
Walmart)
 B2C(Applies to business that sells its products or services to consumers.
E.g. flipkart)
 C2B(Applies to any consumer that sells a product or service to a business. )
 C2C(Applies to sites primarily offering goods and services to assist
consumers interacting with each other. E.g. olx)
CONCEPTUAL VIEW OF E-
COMMERCE
FRAMEWORKS PROVIDING E-
COMMERCE SOLUTIONS
Oracle ATG Commerce
SAP Hybris
IBM WCS
Magneto
ART TECHNOLOGY GROUP (ATG)
Web Commerce Application
Highly scalable and flexible component-based architecture.
E-commerce software solutions & On-demand commerce
optimization applications.
Co-founded by Jeet Singh & Joseph Chung in 1991.
ATG’s solutions provide merchandising, marketing, content
personalization, automated recommendations.
Acquired by Oracle in 2005.
The latest version of Oracle ATG Commerce is 11, which includes the
integration support of REST MVC framework, Endeca Experience
Manager.
ATG PLATFORM
ATG platform is built on “layered” and “modular” approach.
ATG Web Commerce applications implement a component
development model based on Java Beans and JSP
The core of ATG platform is it’s Application framework i.e. Dynamo
Application Framework (DAF).
DAF runs on top of the application server (like weblogic, websphere
etc..) and provides essential facilities for application development and
deployment.
ARCHITECTURE OF ORACLE ATG
BASED APPLICATION.
APPLICATIONS IN ORACLE
COMMERCE
Commerce
Personalization
Merchandising
Business Control Center
Customer Service Center
Endeca Commerce & Experience Manager
ATG COMMERCE
DIFFERENT MODULES AVAILABLE IN
ATG
DPS
 Personalization module
 Used to create and maintain user profiles
 User specific business rules
DCS
 Core Commerce Module
 Provides the commerce capabilities like Shopping Cart, Order Purchase &
Checkout.
CONTD..
DSS
 Extends the targeting capabilities of DPS
 Scenarios are event driven
 Designed to manage interaction between the site visitor and content
DCC
 Provides developer with the tool “ACC”
B2BCommerce
B2CCommerce
DCS.CustomCatalogs
Fulfillment
DAS-UI
KEY CONCEPTS
Component Centric Model
MVC2 framework
Dependency Injection
Modular approach
Data Anywhere Architecture (Similar to ORM)
COMPONENT DEVELOPMENT
MODEL
What is a Component?
Examples of Component Architecture
 Microsofts COM/DCOM
 Java Beans
 CORBA
Benefits of Component Development Model
 Code Reusability
 Reduced Development time
 Continuous, Incremental improvements
COMPONENT IN ATG
Any simple Java Class can be treated as a “Component”.
To define a component in ATG, we need to create .properties file in
the corresponding config directory.
E.g. public class MyComponent{ } ->
src/com/dev/MyComponent.java
Create a .properties file in the corresponding config directory
i.e. config/com/dev/MyComponent.properties
The properties file contains the class name and the scope of the
component (request/session/global)
DYNAMO APPLICATION
FRAMEWORK
DAF is the core of Oracle ATG Web Commerce
It runs on top of the application server
It provides a Component Development Environment.
Supplies essential facilities for application development and
deployment
 Nucleus
 Repositories
 Droplets
 FormHandlers
 Tag Libraries
NUCLEUS
Dynamo’s Open Object Framework
Central registry for the java beans which contains our application
level logic.
Creates and configures the components
Organizes them into a hierarchical namespace
FORM HANDLER
Specialized Nucleus Components
Can be embedded into JSPs to do form validation and based on the
result perform actions like submitting user data, forwarding the user
to some other pages
Form handler components have handleXXX() methods, which takes
care of appropriate handler logic based on user action.
Some of the mostly used OOTB form handlers are
ProfileFormHandler, CartModifierFormHandler,
CommitOrderFormHandler etc..
DROPLET
Specialized Nucleus components which are used to display dynamic
content on the JSP pages
Also known as “Dynamo Servlet Beans”
Java Developers and Page designers can work independently and
applications are easier to maintain
OOTB droplets are ItemLookupDroplet, ForEach, Switch etc..
REPOSITORIES
Data Access layer that defines generic representation of data store
Data Anywhere Architecture (DAA) provides a unified view of content
and data
Core of DAA is “Repository API”
Using Repository API, we can employ a single approach to accessing
different data types, including SQL databases, LDAP directories,
content management systems and file systems
HIGH LEVEL OVERVIEW OF DAA
Advantages
 Data Source Independence
 Maximum Performance
 Simplified transactional control
 Fine-grained Access Control
TAG LIBRARIES
Earlier the presentation language used is “JHTML”
JHTML has lots of custom tags to access Dynamo Components
JSP became the defacto language for Presentation tier
Introduced to access Nucleus components and render dynamic
content from JSP files
Example tags include <dsp:form>, <dsp:input>,<dsp:valueof>,
<dsp:a>, <dsp:getvalueof> etc..
DROPLETS
To display the dynamic content on JSP pages using nucleus
components.
We can embed the output of a nucleus component using dsp tag
libraries
e.g. <dsp:droplet name=“/atg/dynamo/ForEach>
<dsp:param name=“array”
bean=“/com/sample/Student.subjects/>
<dsp:oparam name=“output”>
<dsp:valueof param=“element”/>
</dsp:oparam>
CONTD…
Each droplet has a predefined set of parameters that control
it’s behavior
 Input
 Output
 Open
Input parameters are passed into the droplet
e.g. <dsp:param name=“array” bean=“/com/sample/Student.subjects/>
Output parameters are set by the droplet
e.g. <dsp:valueof param=“element”/>
Open parameters specify code to execute at different stages of servlet
processing
Content that needs to be displayed before output is displayed using
outputStart <dsp:oparam name=“outputStart”> …. </dsp:oparam>
<dsp:oparam name=“output”>……</dsp:oparam>
Content that needs to be displayed before output is displayed using
CONTD..
Some of the OOTB droplets
<dsp:droplet name=“atg/dynamo/droplet/foreach”>
<dsp:droplet name=“atg/dynamo/droplet/switch”>
<dsp:droplet name=“atg/dynamo/droplet/empty”>
<dsp:droplet name=“atg/commerce/catalog/ProductLookup”>
FORM HANDLERS
Evaluates the form data before it is submitted, check for errors, and
determine what action to take.
The form input fields are associated with the properties of the form
handler rather than the component that we want to modify
E.g. <dsp:input type=“text” bean=“MyFormHandler.age”>
Form Handler must include one or more handler methods, to handle
the processing of the form.
CONTD…
Handler methods links form elements with Nucleus components
Signature of the handler method
Public boolean handleXXX(DynamoHttpServletRequest req,
DynamoHttpServletResponse res){
----
}
Action based on return valueReturn Value Action
false No further values are processed after the handler is
called. Rest of the page is not served.
true Normal processing of the form values continues
Page specified by the form’s action attribute is served.
CONTD...
Sample Jsp file showing form data
<dsp:form action=“SaveData”>
<dsp:input type=“text” value=“jeet”
bean=“MyFormHandler.firstName” />
<dsp:input type=“text” value=“singh”
bean=“MyFormHandler.firstName” />
<dsp:input type=“submit” value=“Save”
bean=“MyFormHandler.save”/>
<dsp:input type=“cancel” value=“Reset”
bean=“MyFormHandler.cancel” />
</dsp:form>
CONTD…
public class MyFormHandler extends GenericFormHandler{
private String firstName;
private String lastName;
public boolean handleSave(DynamoHttpServletRequest req,
DynamoHttpServletResponse res){ return true/false;}
public boolean handleCancel(DynamoHttpServletRequest req,
DynamoHttpServletResponse res){ return true/false;}
…..
…..
}
CONTD…
MyFormHandler.properties
$class=MyFormHandler -> Fully Qualified Class Name
$scope=request -> how the class instance will behave
age=25 -> form handler property. We have to provide as
name value pairs.
subjects= java,atg,openapi
prop1^=MyOtherFormHandler.prop1
SCOPE OF THE COMPONENTS
•Scope specifies how the nucleus component is used among
different users.
•We specify the scope of the component in .properties file
•Available scopes
• Global: shared among all the users (default)
• Session: for each user session a separate instance will be provided
• Request: for each active request a separate instance will be provided
• Window: for each browse window a separate instance will be provided
• Prototype: every time the component is resolved separate instance of the
components will be provided

Contenu connexe

Tendances (20)

Ajax
AjaxAjax
Ajax
 
Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySql
 
GraphQL API Gateway and microservices
GraphQL API Gateway and microservicesGraphQL API Gateway and microservices
GraphQL API Gateway and microservices
 
Tomcat
TomcatTomcat
Tomcat
 
Hibernate ppt
Hibernate pptHibernate ppt
Hibernate ppt
 
Hibernate architecture
Hibernate architectureHibernate architecture
Hibernate architecture
 
Introduction to the Semantic Web
Introduction to the Semantic WebIntroduction to the Semantic Web
Introduction to the Semantic Web
 
Javascript tutorial
Javascript tutorialJavascript tutorial
Javascript tutorial
 
Intro to React
Intro to ReactIntro to React
Intro to React
 
Enterprise java unit-1_chapter-3
Enterprise java unit-1_chapter-3Enterprise java unit-1_chapter-3
Enterprise java unit-1_chapter-3
 
GraphQL Data Loaders - How to feed your GraphQL API with data the smart way
GraphQL Data Loaders - How to feed your GraphQL API with data the smart wayGraphQL Data Loaders - How to feed your GraphQL API with data the smart way
GraphQL Data Loaders - How to feed your GraphQL API with data the smart way
 
Introduction to webservices
Introduction to webservicesIntroduction to webservices
Introduction to webservices
 
Command Design Pattern
Command Design PatternCommand Design Pattern
Command Design Pattern
 
Web api
Web apiWeb api
Web api
 
ATG - Commerce Service Center (CSC)
ATG - Commerce Service Center (CSC)ATG - Commerce Service Center (CSC)
ATG - Commerce Service Center (CSC)
 
Jdbc ppt
Jdbc pptJdbc ppt
Jdbc ppt
 
PHP MVC
PHP MVCPHP MVC
PHP MVC
 
Workshop React.js
Workshop React.jsWorkshop React.js
Workshop React.js
 
Spring MVC 3.0 Framework
Spring MVC 3.0 FrameworkSpring MVC 3.0 Framework
Spring MVC 3.0 Framework
 
MVC in PHP
MVC in PHPMVC in PHP
MVC in PHP
 

En vedette

Oracle Commerce Using ATG & Endeca - Do It Yourself Series
Oracle Commerce Using ATG & Endeca - Do It Yourself SeriesOracle Commerce Using ATG & Endeca - Do It Yourself Series
Oracle Commerce Using ATG & Endeca - Do It Yourself SeriesKeyur Shah
 
Achieving the Ultimate TTM with ATG
Achieving the Ultimate TTM with ATGAchieving the Ultimate TTM with ATG
Achieving the Ultimate TTM with ATGErnst de Haan
 
ATG - Common Terminologies
ATG - Common TerminologiesATG - Common Terminologies
ATG - Common TerminologiesKeyur Shah
 
ATG Commerce: Full Capabilities Overview
ATG Commerce: Full Capabilities OverviewATG Commerce: Full Capabilities Overview
ATG Commerce: Full Capabilities Overviewsobrien15
 
ATG Tutorials - Promotion.
ATG Tutorials - Promotion.ATG Tutorials - Promotion.
ATG Tutorials - Promotion.Sanju Thomas
 
ATG Product Modules [INTERESTING VIEW]
ATG Product Modules [INTERESTING VIEW]ATG Product Modules [INTERESTING VIEW]
ATG Product Modules [INTERESTING VIEW]Keyur Shah
 
ATG Advanced Profile Management
ATG Advanced Profile ManagementATG Advanced Profile Management
ATG Advanced Profile ManagementKate Semizhon
 
Common mistakes for ATG applications that affect performance
Common mistakes for ATG applications that affect performanceCommon mistakes for ATG applications that affect performance
Common mistakes for ATG applications that affect performanceKate Semizhon
 
Oracle ATG Commerce Overview for developers
Oracle ATG Commerce Overview for developers Oracle ATG Commerce Overview for developers
Oracle ATG Commerce Overview for developers Kate Semizhon
 
Oracle Endeca Commerce - Installation Guide
Oracle Endeca Commerce - Installation GuideOracle Endeca Commerce - Installation Guide
Oracle Endeca Commerce - Installation GuideKeyur Shah
 
Accessibility Testing - Using Asqatasun - Meetup Webinar
Accessibility Testing - Using Asqatasun - Meetup WebinarAccessibility Testing - Using Asqatasun - Meetup Webinar
Accessibility Testing - Using Asqatasun - Meetup WebinarKeyur Shah
 
ATG Framework,Formhandlers,Pricing
ATG Framework,Formhandlers,PricingATG Framework,Formhandlers,Pricing
ATG Framework,Formhandlers,Pricingpraveen chinnam
 
Xbox one development kit
Xbox one development kitXbox one development kit
Xbox one development kitrojizo frio
 
Oracle Endeca Developer's Guide
Oracle Endeca Developer's GuideOracle Endeca Developer's Guide
Oracle Endeca Developer's GuideKeyur Shah
 
MSU - Strategc Organizational Leadership & Management
MSU - Strategc Organizational Leadership & ManagementMSU - Strategc Organizational Leadership & Management
MSU - Strategc Organizational Leadership & ManagementKeyur Shah
 
Essentials of BI
Essentials of BIEssentials of BI
Essentials of BIKeyur Shah
 

En vedette (20)

Oracle Commerce Using ATG & Endeca - Do It Yourself Series
Oracle Commerce Using ATG & Endeca - Do It Yourself SeriesOracle Commerce Using ATG & Endeca - Do It Yourself Series
Oracle Commerce Using ATG & Endeca - Do It Yourself Series
 
Atg Introduction
Atg IntroductionAtg Introduction
Atg Introduction
 
ATG Best Practices
ATG Best Practices ATG Best Practices
ATG Best Practices
 
Achieving the Ultimate TTM with ATG
Achieving the Ultimate TTM with ATGAchieving the Ultimate TTM with ATG
Achieving the Ultimate TTM with ATG
 
ATG - Common Terminologies
ATG - Common TerminologiesATG - Common Terminologies
ATG - Common Terminologies
 
ATG Commerce: Full Capabilities Overview
ATG Commerce: Full Capabilities OverviewATG Commerce: Full Capabilities Overview
ATG Commerce: Full Capabilities Overview
 
ATG pipelines
ATG pipelinesATG pipelines
ATG pipelines
 
ATG Tutorials - Promotion.
ATG Tutorials - Promotion.ATG Tutorials - Promotion.
ATG Tutorials - Promotion.
 
ATG Product Modules [INTERESTING VIEW]
ATG Product Modules [INTERESTING VIEW]ATG Product Modules [INTERESTING VIEW]
ATG Product Modules [INTERESTING VIEW]
 
ATG Advanced Profile Management
ATG Advanced Profile ManagementATG Advanced Profile Management
ATG Advanced Profile Management
 
Common mistakes for ATG applications that affect performance
Common mistakes for ATG applications that affect performanceCommon mistakes for ATG applications that affect performance
Common mistakes for ATG applications that affect performance
 
Oracle ATG Commerce Overview for developers
Oracle ATG Commerce Overview for developers Oracle ATG Commerce Overview for developers
Oracle ATG Commerce Overview for developers
 
Oracle Endeca Commerce - Installation Guide
Oracle Endeca Commerce - Installation GuideOracle Endeca Commerce - Installation Guide
Oracle Endeca Commerce - Installation Guide
 
Accessibility Testing - Using Asqatasun - Meetup Webinar
Accessibility Testing - Using Asqatasun - Meetup WebinarAccessibility Testing - Using Asqatasun - Meetup Webinar
Accessibility Testing - Using Asqatasun - Meetup Webinar
 
ATG Framework,Formhandlers,Pricing
ATG Framework,Formhandlers,PricingATG Framework,Formhandlers,Pricing
ATG Framework,Formhandlers,Pricing
 
Xbox one development kit
Xbox one development kitXbox one development kit
Xbox one development kit
 
Oracle Endeca Developer's Guide
Oracle Endeca Developer's GuideOracle Endeca Developer's Guide
Oracle Endeca Developer's Guide
 
MSU - Strategc Organizational Leadership & Management
MSU - Strategc Organizational Leadership & ManagementMSU - Strategc Organizational Leadership & Management
MSU - Strategc Organizational Leadership & Management
 
Essentials of BI
Essentials of BIEssentials of BI
Essentials of BI
 
ATG Architecture
ATG ArchitectureATG Architecture
ATG Architecture
 

Similaire à Overview of atg framework

Adaptive Architecture
Adaptive ArchitectureAdaptive Architecture
Adaptive ArchitectureNick Harrison
 
Crafted Design - LJC World Tour Mash Up 2014
Crafted Design - LJC World Tour Mash Up 2014Crafted Design - LJC World Tour Mash Up 2014
Crafted Design - LJC World Tour Mash Up 2014Sandro Mancuso
 
PPT on javascript ajax and css and some points related to server
PPT on javascript ajax and css and some points related to serverPPT on javascript ajax and css and some points related to server
PPT on javascript ajax and css and some points related to servershivanichourasia01
 
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"GlobalLogic Ukraine
 
Create an application with ember
Create an application with ember Create an application with ember
Create an application with ember Chandra Sekar
 
MVC Demystified: Essence of Ruby on Rails
MVC Demystified: Essence of Ruby on RailsMVC Demystified: Essence of Ruby on Rails
MVC Demystified: Essence of Ruby on Railscodeinmotion
 
Crafted Design - ITAKE 2014
Crafted Design - ITAKE 2014Crafted Design - ITAKE 2014
Crafted Design - ITAKE 2014Sandro Mancuso
 
Crafted Design - Sandro Mancuso
Crafted Design - Sandro MancusoCrafted Design - Sandro Mancuso
Crafted Design - Sandro MancusoJAXLondon2014
 
Modern Database Development Oow2008 Lucas Jellema
Modern Database Development Oow2008 Lucas JellemaModern Database Development Oow2008 Lucas Jellema
Modern Database Development Oow2008 Lucas JellemaLucas Jellema
 
The Story of How an Oracle Classic Stronghold successfully embraced SOA (ODTU...
The Story of How an Oracle Classic Stronghold successfully embraced SOA (ODTU...The Story of How an Oracle Classic Stronghold successfully embraced SOA (ODTU...
The Story of How an Oracle Classic Stronghold successfully embraced SOA (ODTU...Lucas Jellema
 
Mondrian - Geo Mondrian
Mondrian - Geo MondrianMondrian - Geo Mondrian
Mondrian - Geo MondrianSimone Campora
 
Ruby On Rails Siddhesh
Ruby On Rails SiddheshRuby On Rails Siddhesh
Ruby On Rails SiddheshSiddhesh Bhobe
 
Intro to mobile web application development
Intro to mobile web application developmentIntro to mobile web application development
Intro to mobile web application developmentzonathen
 
C# .NET Developer Portfolio
C# .NET Developer PortfolioC# .NET Developer Portfolio
C# .NET Developer Portfoliocummings49
 
Oleksandr Krakovetskyi - Orchard CMS
Oleksandr Krakovetskyi - Orchard CMSOleksandr Krakovetskyi - Orchard CMS
Oleksandr Krakovetskyi - Orchard CMSCiklum Ukraine
 
Developing Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web ApplicationDeveloping Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web ApplicationMark Gu
 
Data Access Tech Ed India
Data Access   Tech Ed IndiaData Access   Tech Ed India
Data Access Tech Ed Indiarsnarayanan
 

Similaire à Overview of atg framework (20)

Adaptive Architecture
Adaptive ArchitectureAdaptive Architecture
Adaptive Architecture
 
Crafted Design - LJC World Tour Mash Up 2014
Crafted Design - LJC World Tour Mash Up 2014Crafted Design - LJC World Tour Mash Up 2014
Crafted Design - LJC World Tour Mash Up 2014
 
Design patterns
Design patternsDesign patterns
Design patterns
 
PPT on javascript ajax and css and some points related to server
PPT on javascript ajax and css and some points related to serverPPT on javascript ajax and css and some points related to server
PPT on javascript ajax and css and some points related to server
 
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
 
Create an application with ember
Create an application with ember Create an application with ember
Create an application with ember
 
MVC Demystified: Essence of Ruby on Rails
MVC Demystified: Essence of Ruby on RailsMVC Demystified: Essence of Ruby on Rails
MVC Demystified: Essence of Ruby on Rails
 
Crafted Design - ITAKE 2014
Crafted Design - ITAKE 2014Crafted Design - ITAKE 2014
Crafted Design - ITAKE 2014
 
Crafted Design - Sandro Mancuso
Crafted Design - Sandro MancusoCrafted Design - Sandro Mancuso
Crafted Design - Sandro Mancuso
 
Oracle ADF Tutorial
Oracle ADF TutorialOracle ADF Tutorial
Oracle ADF Tutorial
 
Modern Database Development Oow2008 Lucas Jellema
Modern Database Development Oow2008 Lucas JellemaModern Database Development Oow2008 Lucas Jellema
Modern Database Development Oow2008 Lucas Jellema
 
The Story of How an Oracle Classic Stronghold successfully embraced SOA (ODTU...
The Story of How an Oracle Classic Stronghold successfully embraced SOA (ODTU...The Story of How an Oracle Classic Stronghold successfully embraced SOA (ODTU...
The Story of How an Oracle Classic Stronghold successfully embraced SOA (ODTU...
 
Mondrian - Geo Mondrian
Mondrian - Geo MondrianMondrian - Geo Mondrian
Mondrian - Geo Mondrian
 
Ruby On Rails Siddhesh
Ruby On Rails SiddheshRuby On Rails Siddhesh
Ruby On Rails Siddhesh
 
Intro to mobile web application development
Intro to mobile web application developmentIntro to mobile web application development
Intro to mobile web application development
 
C# .NET Developer Portfolio
C# .NET Developer PortfolioC# .NET Developer Portfolio
C# .NET Developer Portfolio
 
Orchard
OrchardOrchard
Orchard
 
Oleksandr Krakovetskyi - Orchard CMS
Oleksandr Krakovetskyi - Orchard CMSOleksandr Krakovetskyi - Orchard CMS
Oleksandr Krakovetskyi - Orchard CMS
 
Developing Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web ApplicationDeveloping Next-Gen Enterprise Web Application
Developing Next-Gen Enterprise Web Application
 
Data Access Tech Ed India
Data Access   Tech Ed IndiaData Access   Tech Ed India
Data Access Tech Ed India
 

Dernier

Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 

Dernier (20)

Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 

Overview of atg framework

  • 2. AGENDA What is E-Commerce & m-commerce Different frameworks/platforms providing e-commerce solutions Overview of Oracle ATG Different modules provided by Oracle ATG Commerce Nucleus Different Oracle ATG Components
  • 3. E-COMMERCE & M-COMMERCE Distributing, Buying, Selling and marketing products and services over internet through which transaction or terms of sale are performed electronically. Types of E-Commerce  B2B(Applies to businesses buying from and selling to each other. E.g. Walmart)  B2C(Applies to business that sells its products or services to consumers. E.g. flipkart)  C2B(Applies to any consumer that sells a product or service to a business. )  C2C(Applies to sites primarily offering goods and services to assist consumers interacting with each other. E.g. olx)
  • 4.
  • 5. CONCEPTUAL VIEW OF E- COMMERCE
  • 6. FRAMEWORKS PROVIDING E- COMMERCE SOLUTIONS Oracle ATG Commerce SAP Hybris IBM WCS Magneto
  • 7. ART TECHNOLOGY GROUP (ATG) Web Commerce Application Highly scalable and flexible component-based architecture. E-commerce software solutions & On-demand commerce optimization applications. Co-founded by Jeet Singh & Joseph Chung in 1991. ATG’s solutions provide merchandising, marketing, content personalization, automated recommendations. Acquired by Oracle in 2005. The latest version of Oracle ATG Commerce is 11, which includes the integration support of REST MVC framework, Endeca Experience Manager.
  • 8. ATG PLATFORM ATG platform is built on “layered” and “modular” approach. ATG Web Commerce applications implement a component development model based on Java Beans and JSP The core of ATG platform is it’s Application framework i.e. Dynamo Application Framework (DAF). DAF runs on top of the application server (like weblogic, websphere etc..) and provides essential facilities for application development and deployment.
  • 9. ARCHITECTURE OF ORACLE ATG BASED APPLICATION.
  • 10. APPLICATIONS IN ORACLE COMMERCE Commerce Personalization Merchandising Business Control Center Customer Service Center Endeca Commerce & Experience Manager
  • 12. DIFFERENT MODULES AVAILABLE IN ATG DPS  Personalization module  Used to create and maintain user profiles  User specific business rules DCS  Core Commerce Module  Provides the commerce capabilities like Shopping Cart, Order Purchase & Checkout.
  • 13. CONTD.. DSS  Extends the targeting capabilities of DPS  Scenarios are event driven  Designed to manage interaction between the site visitor and content DCC  Provides developer with the tool “ACC” B2BCommerce B2CCommerce DCS.CustomCatalogs Fulfillment DAS-UI
  • 14. KEY CONCEPTS Component Centric Model MVC2 framework Dependency Injection Modular approach Data Anywhere Architecture (Similar to ORM)
  • 15. COMPONENT DEVELOPMENT MODEL What is a Component? Examples of Component Architecture  Microsofts COM/DCOM  Java Beans  CORBA Benefits of Component Development Model  Code Reusability  Reduced Development time  Continuous, Incremental improvements
  • 16. COMPONENT IN ATG Any simple Java Class can be treated as a “Component”. To define a component in ATG, we need to create .properties file in the corresponding config directory. E.g. public class MyComponent{ } -> src/com/dev/MyComponent.java Create a .properties file in the corresponding config directory i.e. config/com/dev/MyComponent.properties The properties file contains the class name and the scope of the component (request/session/global)
  • 17. DYNAMO APPLICATION FRAMEWORK DAF is the core of Oracle ATG Web Commerce It runs on top of the application server It provides a Component Development Environment. Supplies essential facilities for application development and deployment  Nucleus  Repositories  Droplets  FormHandlers  Tag Libraries
  • 18. NUCLEUS Dynamo’s Open Object Framework Central registry for the java beans which contains our application level logic. Creates and configures the components Organizes them into a hierarchical namespace
  • 19. FORM HANDLER Specialized Nucleus Components Can be embedded into JSPs to do form validation and based on the result perform actions like submitting user data, forwarding the user to some other pages Form handler components have handleXXX() methods, which takes care of appropriate handler logic based on user action. Some of the mostly used OOTB form handlers are ProfileFormHandler, CartModifierFormHandler, CommitOrderFormHandler etc..
  • 20. DROPLET Specialized Nucleus components which are used to display dynamic content on the JSP pages Also known as “Dynamo Servlet Beans” Java Developers and Page designers can work independently and applications are easier to maintain OOTB droplets are ItemLookupDroplet, ForEach, Switch etc..
  • 21. REPOSITORIES Data Access layer that defines generic representation of data store Data Anywhere Architecture (DAA) provides a unified view of content and data Core of DAA is “Repository API” Using Repository API, we can employ a single approach to accessing different data types, including SQL databases, LDAP directories, content management systems and file systems
  • 22. HIGH LEVEL OVERVIEW OF DAA Advantages  Data Source Independence  Maximum Performance  Simplified transactional control  Fine-grained Access Control
  • 23. TAG LIBRARIES Earlier the presentation language used is “JHTML” JHTML has lots of custom tags to access Dynamo Components JSP became the defacto language for Presentation tier Introduced to access Nucleus components and render dynamic content from JSP files Example tags include <dsp:form>, <dsp:input>,<dsp:valueof>, <dsp:a>, <dsp:getvalueof> etc..
  • 24. DROPLETS To display the dynamic content on JSP pages using nucleus components. We can embed the output of a nucleus component using dsp tag libraries e.g. <dsp:droplet name=“/atg/dynamo/ForEach> <dsp:param name=“array” bean=“/com/sample/Student.subjects/> <dsp:oparam name=“output”> <dsp:valueof param=“element”/> </dsp:oparam>
  • 25. CONTD… Each droplet has a predefined set of parameters that control it’s behavior  Input  Output  Open Input parameters are passed into the droplet e.g. <dsp:param name=“array” bean=“/com/sample/Student.subjects/> Output parameters are set by the droplet e.g. <dsp:valueof param=“element”/> Open parameters specify code to execute at different stages of servlet processing Content that needs to be displayed before output is displayed using outputStart <dsp:oparam name=“outputStart”> …. </dsp:oparam> <dsp:oparam name=“output”>……</dsp:oparam> Content that needs to be displayed before output is displayed using
  • 26. CONTD.. Some of the OOTB droplets <dsp:droplet name=“atg/dynamo/droplet/foreach”> <dsp:droplet name=“atg/dynamo/droplet/switch”> <dsp:droplet name=“atg/dynamo/droplet/empty”> <dsp:droplet name=“atg/commerce/catalog/ProductLookup”>
  • 27. FORM HANDLERS Evaluates the form data before it is submitted, check for errors, and determine what action to take. The form input fields are associated with the properties of the form handler rather than the component that we want to modify E.g. <dsp:input type=“text” bean=“MyFormHandler.age”> Form Handler must include one or more handler methods, to handle the processing of the form.
  • 28. CONTD… Handler methods links form elements with Nucleus components Signature of the handler method Public boolean handleXXX(DynamoHttpServletRequest req, DynamoHttpServletResponse res){ ---- } Action based on return valueReturn Value Action false No further values are processed after the handler is called. Rest of the page is not served. true Normal processing of the form values continues Page specified by the form’s action attribute is served.
  • 29. CONTD... Sample Jsp file showing form data <dsp:form action=“SaveData”> <dsp:input type=“text” value=“jeet” bean=“MyFormHandler.firstName” /> <dsp:input type=“text” value=“singh” bean=“MyFormHandler.firstName” /> <dsp:input type=“submit” value=“Save” bean=“MyFormHandler.save”/> <dsp:input type=“cancel” value=“Reset” bean=“MyFormHandler.cancel” /> </dsp:form>
  • 30. CONTD… public class MyFormHandler extends GenericFormHandler{ private String firstName; private String lastName; public boolean handleSave(DynamoHttpServletRequest req, DynamoHttpServletResponse res){ return true/false;} public boolean handleCancel(DynamoHttpServletRequest req, DynamoHttpServletResponse res){ return true/false;} ….. ….. }
  • 31. CONTD… MyFormHandler.properties $class=MyFormHandler -> Fully Qualified Class Name $scope=request -> how the class instance will behave age=25 -> form handler property. We have to provide as name value pairs. subjects= java,atg,openapi prop1^=MyOtherFormHandler.prop1
  • 32. SCOPE OF THE COMPONENTS •Scope specifies how the nucleus component is used among different users. •We specify the scope of the component in .properties file •Available scopes • Global: shared among all the users (default) • Session: for each user session a separate instance will be provided • Request: for each active request a separate instance will be provided • Window: for each browse window a separate instance will be provided • Prototype: every time the component is resolved separate instance of the components will be provided