SlideShare una empresa de Scribd logo
1 de 21
Descargar para leer sin conexión
Omni Commerce:
From Buzzword
to Technology


Jürgen Albertsen
Enterprise Architect
hybris
Commerce is Everywhere
TV
Console
Web
POS
Mobile
Call Center
Social
Print
Digital Ads
Marketplace
Mobile Native
A Few Examples
TV Mobile
+ + =
Live stream, shop as you
watch
Mobile
+ =
Want this, alert me when
near shop
Product
Product
Checkout
Location
POS
+ =
Not available in store,
deliver to home
Product Checkout
We call it
Multi Channel
No, Omni Channel
No, Omni Commerce
Nice word but:
How to do it?
The solution:
Web Services
of course
The Problem:
hybris is pretty
old mature
Core Services
Core / Jalo
Over theYears We Stacked up Quite a Stack
Commerce Services
Commerce Façades
Accelerator (Web Storefront) OCC (Web Services)
Let’s Zoom In
Controller
Converter
Service
Façade
DTO
Model
Populator
A DTO
public class CartData implements Serializable {
!
private String code;
private boolean net;
private PriceData totalPrice;
//...
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
!
//...
}
A Descriptor for DTOs
<bean class="de.hybris.platform.commercefacades.order.CartData">
<property name="code" type="String"/>
<property name="net" type="boolean"/>
<property name="totalPrice"
type="de.hybris.platform.commercefacades.product.PriceData"/>
<!-- ... -->
</bean>
A Façade
public interface CartFacade
{
!
CartData getSessionCart();
!
CartData getMiniCart();
!
CartModificationData addToCart(String code,
long quantity)
throws CommerceCartModificationException;
!
// ...
!
}
A Controller for the Storefront
@Controller
public class AddToCartController extends AbstractController
{
@Resource(name = "cartFacade")
private CartFacade cartFacade;
!
@RequestMapping(value = "/cart/add", method = RequestMethod.POST)
public String addToCart(@RequestParam("productCodePost") String code,
Model model, @Valid AddToCartForm form, BindingResult bindingErrors)
{
// ...
CartModificationData cartModification = cartFacade.addToCart(code, qty);
if (cartModification.getQuantityAdded() == 0L)
{
model.addAttribute(ERROR_MSG_TYPE,
"basket.information.quantity.noItemsAdded." +
cartModification.getStatusCode());
}
else if (cartModification.getQuantityAdded() < qty)
{
model.addAttribute(ERROR_MSG_TYPE,
"basket.information.quantity.reducedNumberOfItemsAdded." +
cartModification.getStatusCode());
}
// ..
}
}
Spring MVC doesn’t
care if it’s HTML,
XML, JSON, 

or whatever
Another Controller — this Time for a Web Service
@Controller
public class CartController extends BaseController
{
@Resource(name = "cartFacade")
private CartFacade cartFacade;
!
@RequestMapping(value = "/entry", method = RequestMethod.POST)
@ResponseBody
public CartModificationData addToCart(@RequestParam(required = true) String code,
@RequestParam(required = false, defaultValue = "1") long qty)
throws CommerceCartModificationException
{
return cartFacade.addToCart(code, qty);
}
!
}
Marshal Response DTOs to XML/JSON
<!-- from springmvc-servlet.xml -->
!
<mvc:annotation-driven>
<mvc:message-converters register-defaults="false">
<bean parent="resolverXStreamJSONConverter"/>
<bean parent="resolverXStreamXmlConverter"/>
</mvc:message-converters>
</mvc:annotation-driven>
We expose 

commerce logic 

and data model 1:1
What Else?
REST-like
ETag
OAuth 2.0 & HTTPS
Template
Shipped as source
Questions?
Beer?

Más contenido relacionado

Similar a Occ tech for commerce

How To Choose The Best Marketplace Platform.pdf
How To Choose The Best Marketplace Platform.pdfHow To Choose The Best Marketplace Platform.pdf
How To Choose The Best Marketplace Platform.pdfStoreHippo
 
Benefits of VoIP
Benefits of VoIPBenefits of VoIP
Benefits of VoIPpascom
 
Ism ecompany ecommerce software comparison
Ism ecompany  ecommerce software comparisonIsm ecompany  ecommerce software comparison
Ism ecompany ecommerce software comparisonvalantic NL
 
How To Find The Best Multi Vendor Ecommerce Software.pdf
How To Find The Best Multi Vendor Ecommerce Software.pdfHow To Find The Best Multi Vendor Ecommerce Software.pdf
How To Find The Best Multi Vendor Ecommerce Software.pdfStoreHippo
 
Ip.Digital.Signage(Eng).102011
Ip.Digital.Signage(Eng).102011Ip.Digital.Signage(Eng).102011
Ip.Digital.Signage(Eng).102011Chanho Lee
 
2016.05 Liferay Webinar, Alistair Oildfield
2016.05 Liferay Webinar, Alistair Oildfield2016.05 Liferay Webinar, Alistair Oildfield
2016.05 Liferay Webinar, Alistair OildfieldEmeldi Group
 
Retail Pro POS v8, v9, Prism Ecommerce Integration
 Retail Pro POS v8, v9, Prism Ecommerce Integration Retail Pro POS v8, v9, Prism Ecommerce Integration
Retail Pro POS v8, v9, Prism Ecommerce Integration24Seven Commerce
 
Pyrotechnic Software Systems Profile
Pyrotechnic Software Systems ProfilePyrotechnic Software Systems Profile
Pyrotechnic Software Systems Profilenplasar
 
Benchmark of ecommerce solutions (short version, english)
Benchmark of ecommerce solutions (short version, english)Benchmark of ecommerce solutions (short version, english)
Benchmark of ecommerce solutions (short version, english)Philippe Humeau
 
Digital transformation and customer care
Digital transformation and customer careDigital transformation and customer care
Digital transformation and customer careMiguel Mello
 
Getting Started In Digital Signage
Getting Started In Digital SignageGetting Started In Digital Signage
Getting Started In Digital SignageDave Haar
 
4Developers 2015: Sylius - E-Commerce framework for PHP - Pawel Jedrzejewski
4Developers 2015: Sylius - E-Commerce framework for PHP - Pawel Jedrzejewski4Developers 2015: Sylius - E-Commerce framework for PHP - Pawel Jedrzejewski
4Developers 2015: Sylius - E-Commerce framework for PHP - Pawel JedrzejewskiPROIDEA
 
10 Business people make their voices heard
10 Business people make their voices heard10 Business people make their voices heard
10 Business people make their voices heardGreg Eicke
 

Similar a Occ tech for commerce (20)

How To Choose The Best Marketplace Platform.pdf
How To Choose The Best Marketplace Platform.pdfHow To Choose The Best Marketplace Platform.pdf
How To Choose The Best Marketplace Platform.pdf
 
Benefits of VoIP
Benefits of VoIPBenefits of VoIP
Benefits of VoIP
 
Ism ecompany ecommerce software comparison
Ism ecompany  ecommerce software comparisonIsm ecompany  ecommerce software comparison
Ism ecompany ecommerce software comparison
 
How To Find The Best Multi Vendor Ecommerce Software.pdf
How To Find The Best Multi Vendor Ecommerce Software.pdfHow To Find The Best Multi Vendor Ecommerce Software.pdf
How To Find The Best Multi Vendor Ecommerce Software.pdf
 
Ip.Digital.Signage(Eng).102011
Ip.Digital.Signage(Eng).102011Ip.Digital.Signage(Eng).102011
Ip.Digital.Signage(Eng).102011
 
2016.05 Liferay Webinar, Alistair Oildfield
2016.05 Liferay Webinar, Alistair Oildfield2016.05 Liferay Webinar, Alistair Oildfield
2016.05 Liferay Webinar, Alistair Oildfield
 
Ecommerce Development
Ecommerce DevelopmentEcommerce Development
Ecommerce Development
 
Ecommerce Development
Ecommerce DevelopmentEcommerce Development
Ecommerce Development
 
Retail Pro POS v8, v9, Prism Ecommerce Integration
 Retail Pro POS v8, v9, Prism Ecommerce Integration Retail Pro POS v8, v9, Prism Ecommerce Integration
Retail Pro POS v8, v9, Prism Ecommerce Integration
 
Nestosh portfolio
Nestosh portfolioNestosh portfolio
Nestosh portfolio
 
Force Platform
Force PlatformForce Platform
Force Platform
 
Pyrotechnic Software Systems Profile
Pyrotechnic Software Systems ProfilePyrotechnic Software Systems Profile
Pyrotechnic Software Systems Profile
 
Benchmark of ecommerce solutions (short version, english)
Benchmark of ecommerce solutions (short version, english)Benchmark of ecommerce solutions (short version, english)
Benchmark of ecommerce solutions (short version, english)
 
Digital transformation and customer care
Digital transformation and customer careDigital transformation and customer care
Digital transformation and customer care
 
Open Telco API
Open Telco APIOpen Telco API
Open Telco API
 
Getting Started In Digital Signage
Getting Started In Digital SignageGetting Started In Digital Signage
Getting Started In Digital Signage
 
Inovent
InoventInovent
Inovent
 
4Developers 2015: Sylius - E-Commerce framework for PHP - Pawel Jedrzejewski
4Developers 2015: Sylius - E-Commerce framework for PHP - Pawel Jedrzejewski4Developers 2015: Sylius - E-Commerce framework for PHP - Pawel Jedrzejewski
4Developers 2015: Sylius - E-Commerce framework for PHP - Pawel Jedrzejewski
 
10 Business people make their voices heard
10 Business people make their voices heard10 Business people make their voices heard
10 Business people make their voices heard
 
Ecommerce
EcommerceEcommerce
Ecommerce
 

Más de Neoworks

Search relevancy
Search relevancySearch relevancy
Search relevancyNeoworks
 
Search refinement
Search refinementSearch refinement
Search refinementNeoworks
 
Payments nick
Payments nickPayments nick
Payments nickNeoworks
 
Neoworks research
Neoworks researchNeoworks research
Neoworks researchNeoworks
 
Delivery method
Delivery methodDelivery method
Delivery methodNeoworks
 

Más de Neoworks (7)

Search relevancy
Search relevancySearch relevancy
Search relevancy
 
Search refinement
Search refinementSearch refinement
Search refinement
 
Payments nick
Payments nickPayments nick
Payments nick
 
Payments
PaymentsPayments
Payments
 
Neoworks research
Neoworks researchNeoworks research
Neoworks research
 
Delivery method
Delivery methodDelivery method
Delivery method
 
Shutl
ShutlShutl
Shutl
 

Último

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Último (20)

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Occ tech for commerce

  • 1. Omni Commerce: From Buzzword to Technology 
 Jürgen Albertsen Enterprise Architect hybris
  • 2. Commerce is Everywhere TV Console Web POS Mobile Call Center Social Print Digital Ads Marketplace Mobile Native
  • 3. A Few Examples TV Mobile + + = Live stream, shop as you watch Mobile + = Want this, alert me when near shop Product Product Checkout Location POS + = Not available in store, deliver to home Product Checkout
  • 7. Nice word but: How to do it?
  • 9. The Problem: hybris is pretty old mature
  • 10. Core Services Core / Jalo Over theYears We Stacked up Quite a Stack Commerce Services Commerce Façades Accelerator (Web Storefront) OCC (Web Services)
  • 12. A DTO public class CartData implements Serializable { ! private String code; private boolean net; private PriceData totalPrice; //... public String getCode() { return code; } public void setCode(String code) { this.code = code; } ! //... }
  • 13. A Descriptor for DTOs <bean class="de.hybris.platform.commercefacades.order.CartData"> <property name="code" type="String"/> <property name="net" type="boolean"/> <property name="totalPrice" type="de.hybris.platform.commercefacades.product.PriceData"/> <!-- ... --> </bean>
  • 14. A Façade public interface CartFacade { ! CartData getSessionCart(); ! CartData getMiniCart(); ! CartModificationData addToCart(String code, long quantity) throws CommerceCartModificationException; ! // ... ! }
  • 15. A Controller for the Storefront @Controller public class AddToCartController extends AbstractController { @Resource(name = "cartFacade") private CartFacade cartFacade; ! @RequestMapping(value = "/cart/add", method = RequestMethod.POST) public String addToCart(@RequestParam("productCodePost") String code, Model model, @Valid AddToCartForm form, BindingResult bindingErrors) { // ... CartModificationData cartModification = cartFacade.addToCart(code, qty); if (cartModification.getQuantityAdded() == 0L) { model.addAttribute(ERROR_MSG_TYPE, "basket.information.quantity.noItemsAdded." + cartModification.getStatusCode()); } else if (cartModification.getQuantityAdded() < qty) { model.addAttribute(ERROR_MSG_TYPE, "basket.information.quantity.reducedNumberOfItemsAdded." + cartModification.getStatusCode()); } // .. } }
  • 16. Spring MVC doesn’t care if it’s HTML, XML, JSON, 
 or whatever
  • 17. Another Controller — this Time for a Web Service @Controller public class CartController extends BaseController { @Resource(name = "cartFacade") private CartFacade cartFacade; ! @RequestMapping(value = "/entry", method = RequestMethod.POST) @ResponseBody public CartModificationData addToCart(@RequestParam(required = true) String code, @RequestParam(required = false, defaultValue = "1") long qty) throws CommerceCartModificationException { return cartFacade.addToCart(code, qty); } ! }
  • 18. Marshal Response DTOs to XML/JSON <!-- from springmvc-servlet.xml --> ! <mvc:annotation-driven> <mvc:message-converters register-defaults="false"> <bean parent="resolverXStreamJSONConverter"/> <bean parent="resolverXStreamXmlConverter"/> </mvc:message-converters> </mvc:annotation-driven>
  • 19. We expose 
 commerce logic 
 and data model 1:1
  • 20. What Else? REST-like ETag OAuth 2.0 & HTTPS Template Shipped as source