`

IBM WebSphere Commerce backend dev

阅读更多

 

IBM WebSphere 开发者技术期刊

http://www.ibm.com/developerworks/cn/websphere/techjournal/index.html

----------------------

配置页面中文显示

D:\WCToolkitEE60\properties\com\ibm\commerce\tools\statistics\properties\

ProductStatNLS.properties

 

# path=D:\WCToolkitEE60\properties\com\ibm\commerce\tools\statistics\properties\ProductStatNLS.properties

BrandStatPageTitle = BrandStatTitle
CategoryStatPageTitle = CategoryStatTitle
 

 

ProductStatNLS_zh_CN.properties

 

# path=D:\WCToolkitEE60\properties\com\ibm\commerce\tools\statistics\properties\ProductStatNLS_zh_CN.properties
BrandStatPageTitle = \u5546\u54c1-\u54c1\u724c\u7edf\u8ba1
CategoryStatPageTitle = \u5546\u54c1-\u54c1\u7c7b\u7edf\u8ba1
 


配置菜单按钮中文显示

D:\WCToolkitEE60\properties\com\ibm\commerce\tools\properties\

mccNLS.properties

 

# 
# Operations / Logistics
#----------------------------------------------
# add by tangxj start 
BrandStatPulldownButton = BrandStatPulldownButton
CategoryStatPulldownButton = CategoryStatPulldownButton
# add by tangxj end
 

mccNLS_zh_CN.properties

配置功能资源绑定

D:\WCToolkitEE60\xml\tools\stat\

BrandStat.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE action SYSTEM "../common/List.dtd">
<!--
 *===================================================================
 * Licensed Materials - Property of IBM
 *
 * WebSphere Commerce
 *
 * (c) Copyright International Business Machines Corporation. 2003
 *     All rights reserved.
 *
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
 *===================================================================
-->

<action resourceBundle="statistics.ProductStatNLS"
 	formName = "findprice"        
    helpKey=""    >
  <parameter
	listsize="20"
       	startindex="0"
	resultssize="0"
	endindex="0"
 	/>
  <scrollcontrol
        title="BrandStatTitle"
	  display="true"/>
  <controlpanel
        display="true"/>

  <jsFile src="/wcs/javascript/tools/common/Util.js" />
</action>
 

 

CategoryStat.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE action SYSTEM "../common/List.dtd">
<!--
 *===================================================================
 * Licensed Materials - Property of IBM
 *
 * WebSphere Commerce
 *
 * (c) Copyright International Business Machines Corporation. 2003
 *     All rights reserved.
 *
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
 *===================================================================
-->

<action resourceBundle="statistics.ProductStatNLS"
 	formName = "findprice"        
    helpKey=""    >
  <parameter
	listsize="20"
       	startindex="0"
	resultssize="0"
	endindex="0"
 	/>
  <scrollcontrol
        title="CategoryStatTitle"
	  display="true"/>
  <controlpanel
        display="true"/>

  <jsFile src="/wcs/javascript/tools/common/Util.js" />
</action>
 

 

resources.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE resourceConfig SYSTEM "../common/Resources.dtd">
<!--
 *===================================================================
 * Licensed Materials - Property of IBM
 *
 * WebSphere Commerce
 *
 * (c) Copyright International Business Machines Corporation. 2003
 *     All rights reserved.
 *
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
 *===================================================================
-->

<!-- This is the configuration file for the inventory objects that are
     available in the runtime model -->

<resourceConfig>

<resource nameSpace="statistics">

  <!-- resource bundle file mappings -->

  <resourceBundle name="ProductStatNLS"
                  bundle="com.ibm.commerce.tools.statistics.properties.ProductStatNLS" />

    <!-- XML file mappings -->
    <resourceXML name="BrandStat"
         file="stat/BrandStat.xml" />
    <resourceXML name="CategoryStat"
         file="stat/CategoryStat.xml" />
		 
</resource>
</resourceConfig>
 

 

配置功能资源注册到总资源

D:\WCToolkitEE60\xml\config\wc-server.xml

 

    <ToolsGeneralConfig
        DTDPath="tools/common;tools/devtools;tools/bi;tools/catalog;schema/xml;sar"
        XMLCacheSize="0"
        XMLPath="tools;tools/devtools;WEB-INF/xml/tools;WEB-INF"
        developmentMode="false" display="false" resourceBundlePath="">
、、、
                <!-- add by tangxj start -->
        <resourceConfig enabled="true" file="stat/resources.xml"/>
		<!-- add by tangxj end -->
、、、

    </ToolsGeneralConfig>
 

 

配置url node显示菜单按钮

D:\WCToolkitEE60\xml\tools\common\CommerceAcceleratorMHS.xml

 

   <menuitem name="operations"
             enabled="true"
             users="cusRep cusSup opMgr pickPacker receiver retAdmin seller">
、、、
	 <!-- add by tangxj start-->
      <node  name="BrandStatPulldownButton"
             url="$webapp_accelerator$NewDynamicListView?ActionXMLFile=stat.BrandStat&amp;cmd=ProductBrandStatView"
             users="all"/>
      <node  name="CategoryStatPulldownButton"
             url="$webapp_accelerator$NewDynamicListView?ActionXMLFile=stat.CategoryStat&amp;cmd=ProductCategoryStatView"
             users="all"/>
	 <!-- add by tangxj end-->
、、、
   </menuitem>
 

 

配置验证 ok

https://localhost:8000/webapp/wcs/tools/servlet/ToolsLogon?XMLFile=common.mcLogon&storeId=0

--配置下拉菜单按钮完成--

----------------------

配置MVC

D:\WCToolkitEE60\workspace\CommerceAccelerator\WebContent\WEB-INF\struts-config.xml

 

        <forward name="ProductBrandStatView" path="/tools/productStat/BrandStat.jsp" className="com.ibm.commerce.struts.ECActionForward">
        </forward>
        <forward name="ProductCategoryStatView" className="com.ibm.commerce.struts.ECActionForward" path="/tools/productStat/CategoryStat.jsp">
        </forward>

        <action path="/ProductBrandStatView" type="com.ibm.commerce.struts.BaseAction">
        </action>
        <action path="/ProductCategoryStatView" type="com.ibm.commerce.struts.BaseAction">
        </action>
 

新建JSP页面

D:\WCToolkitEE60\workspace\CommerceAccelerator\WebContent\tools\productStat\BrandStat.jsp

D:\WCToolkitEE60\workspace\CommerceAccelerator\WebContent\tools\productStat\CategoryStat.jsp

--配置JSP页面展示完成--

 

end

 

 

分享到:
评论

相关推荐

    基于IBM Websphere Commerce 的电子商务平台简介

    IBM WebSphere Commerce是全球领先的电子商务解决方案之一,专为构建、扩展和管理复杂的在线商务环境而设计。这个平台提供了全面的功能,帮助企业实现B2C、B2B以及多渠道的商业运营。下面,我们将深入探讨基于IBM ...

    IBM WebSphere Commerce安装教程

    IBM WebSphere Commerce是一款强大的电子商务平台,它为企业提供了一整套解决方案,用于构建、管理和扩展线上购物体验。在安装和配置WebSphere Commerce时,我们需要遵循一系列步骤,确保系统能够正确无误地运行。...

    IBM WebSphere Commerce Training

    IBM WebSphere Commerce是全球领先的电子商务平台之一,专为企业级在线交易提供强大支持。这款解决方案集成了先进的技术、灵活的架构和丰富的功能,旨在帮助企业构建、管理和优化其数字化商业体验。 在"IBM ...

    IBM WebSphere Commerce Suite助BuyUSA提高出口贸易能力

    【IBM WebSphere Commerce Suite】是IBM提供的一款强大的电子商务平台,专为构建和管理复杂的B2B和B2C在线交易而设计。在这个案例中,它被US&FCS(美国与对外商业服务机构)用于提升其出口贸易服务的能力,旨在帮助...

    websphere commerce的使用即websphere commerce图解.pdf

    在本文档中,我们将详细介绍如何使用 IBM WebSphere Commerce 平台以及如何对其进行定制化处理,以满足特定业务需求。WebSphere Commerce 是一款功能强大的电子商务解决方案,它为构建、部署和管理复杂的多渠道零售...

    IBM WebSphere MQ 安装包

    【IBM WebSphere MQ安装包详解】 IBM WebSphere MQ,前身为IBM MQSeries,是IBM公司推出的一款企业级的消息中间件产品。它在信息技术领域扮演着至关重要的角色,为跨网络、操作系统和应用程序提供了高效、安全的...

    IBM WebSphere MQ 技术白皮书.doc

    IBM WebSphere MQ 技术白皮书 IBM WebSphere MQ 技术白皮书是 IBM 公司发布的一份技术白皮书,旨在介绍 IBM WebSphere MQ 产品的技术特性、架构和价值。下面是根据白皮书的内容生成的相关知识点。 概述 在概述...

    IBM WebSphere MQ入门教程.pdf

    IBM WebSphere MQ入门教程 IBM WebSphere MQ 是一种基于消息队列的中间件,用于实现不同的应用程序之间的异步通信。下面是对 IBM WebSphere MQ 的入门教程的总结,涵盖了 WebSphere MQ 的原理、体系结构、重要特点...

    WebSphere Commerce 反编译包

    WebSphere Commerce反编译包是针对IBM的电子商务平台WebSphere Commerce的一款特殊工具,它主要用于查看、分析和可能地修改WebSphere Commerce的源代码。在商业软件开发中,源代码通常是私有的,但反编译工具可以...

    IBM Websphere Portal Primer

    The dictionary defines a portal as a grand or imposing door or entrance; hence, that picture on the cover. In this book, you will learn why the word portal has become a major buzzword in the world of ...

    IBM WebSphere 认证配套实验帮助文档

    ### IBM WebSphere 认证配套实验帮助文档知识点详解 #### 一、背景介绍与文档概述 IBM WebSphere 是一款由IBM公司开发的企业级应用服务器,主要用于支持Java EE应用程序的部署和运行。IBM WebSphere 认证是业界...

    IBM WebSphere 认证的教材

    IBM WebSphere 是一款全球领先的业务基础架构平台,用于构建、部署和管理企业级应用程序。它为企业提供了一个集成的环境,支持跨多个系统进行应用程序开发、运行和管理。在这个"IBM WebSphere 认证的教材"中,我们...

    IBM WebSphere DataStage v8.1 中文文档

    IBM Information Server FastTrack, IBM WebSphere® Business Glossary, IBM Information Server Business Glossary Anywhere, IBM WebSphere DataStage®, IBM WebSphere Information Analyzer, IBM WebSphere ...

    IBM WebSphere MQ安装使用教程详细图解

    【IBM WebSphere MQ安装使用教程详细图解】 IBM WebSphere MQ,简称MQ,是一款由IBM提供的消息中间件,它允许应用程序之间可靠地交换信息,无论它们位于何处或使用何种操作系统。本教程旨在指导用户在Windows系统上...

    IBM webSphere 认证试题

    ### IBM WebSphere 认证知识点解析 #### 一、IBM WebSphere 认证概述 IBM WebSphere 是一款高性能的企业级应用服务器,它提供了强大的中间件功能,包括事务处理、消息传递、安全性和集群管理等,适用于构建和部署...

    IBM WebSphere家族产品与BEA WebLogic家族产品比较

    此外,WebSphere还包含了Integration Bus、Commerce、Portal、MQ等一系列组件,满足企业不同层面的需求,如集成、电子商务、门户建设和消息传递。 相反,BEA WebLogic Server同样是一款强大的J2EE应用服务器,它以...

    Rodale通过WebSphere Commerce Suite拯救其电子商务

    【Rodale通过WebSphere Commerce Suite拯救其电子商务】这篇文章讲述了Rodale这家知名出版商如何借助IBM的WebSphere Commerce Suite转型其电子商务平台,以应对原有软件平台废止带来的挑战。Rodale,自1930年以来...

Global site tag (gtag.js) - Google Analytics