broadleaf-commerce

Liferay BroadLeaf Integraion

牧云@^-^@ 提交于 2019-12-12 04:24:58
问题 Can some one tell me how to import broadleaf-commerce portlet in liferay / integration of broadleaf with liferay . I have a sample of broadleaf portlet as i see the folder structure it looks like maven project. I am importing the project as maven project. Is this approach correct..I am newbie to liferay and starting to learn. Project Structure After importing Error Log After Importing the project Keystore file 'E:\Software Backups\Coding Zone\liferayworkspace\DemoSite-Portlet-develop\admin

WildFly AS 8.0 Error: org.hibernate.integrator.spi.Integrator: Provider org.hibernate.envers.event.EnversIntegrator not a subtype

瘦欲@ 提交于 2019-12-11 14:49:08
问题 I come from a heavy .NET/IIS background and although I have worked with Java in the past, I am fairly new to large Java web applications so please bear with me. Due to my limited background, I will walk through the steps I took from the very start trying to get this app to deploy (in case my "fix" for another issue could have broken something else). I am having trouble deploying a Spring/Hibernate application to the WildFly application server. The application itself definitely works because

Add Order in Admin Panel Broadleaf 6

自闭症网瘾萝莉.ら 提交于 2019-12-11 14:03:10
问题 I know that before version 5, there was an Order in the Customer Care panel, and that they hide it intentionally. I saw this thread http://forum.broadleafcommerce.org/viewtopic.php?t=25329 but when I try to add that row in the database, I get an error that that MODULE_ID value(4000) doesn't exist in the BLC_ADMIN_MODULE table. Any suggestions? 回答1: The module_id column needs to match an entry in the blc_admin_module table. I think the 4000 value is no longer a valid entry from blc_admin

Broadleaf : controller calling failed

瘦欲@ 提交于 2019-12-11 05:35:42
问题 Hi I Have Created a Custom controller in broadleaf i have called the request mappings in custom controller but this gives an error Here is my code for Custom Controller: @Controller @RequestMapping("/"+Test12.SECTION_KEY) @Secured("ROLE_ADMIN") public class Test12 extends AdminAbstractController{ protected static final String SECTION_KEY = "test"; public static String nme1=""; // @Autowired FilterExtra td; @RequestMapping(value = "", method = RequestMethod.GET) public String test

Rest API - NullPointerException in Broadleaf Commerce

自古美人都是妖i 提交于 2019-12-11 02:38:46
问题 I am trying to access this url for my autocomplete in the search box.. http://localhost:8080/api/v1/catalog/search/products?q=sauce But, I am getting the following error.. It seems here that the @Resource(name = "blExploitProtectionService") protected ExploitProtectionService exploitProtectionService; exploitProtectionService is null And here is the error.. HTTP ERROR 500 Problem accessing /api/v1/catalog/search/products. Reason: Server Error Caused by: java.lang.NullPointerException at org

How to run broadleaf on Tomcat instead of jettyserver..?

走远了吗. 提交于 2019-12-06 11:04:48
问题 I followed all the instructions that was provided in broadleafcommerce's documentation. I could run the site on jettyserver before making changes to the Mysql integration. but after i Followed the Mysql integration instructions that were given in the "getting started" page, it stopped working on jettyserver as well...what may be the problem..? [http://www.broadleafcommerce.com/docs/core/current/tutorials/getting-started-tutorials/switch-to-mysql-tutorial] Therefore i tried to run the website

How to override the @AdminPresentation for existing attributes [Broadleaf Commerce]

五迷三道 提交于 2019-12-06 06:42:50
I am trying to override the @AdminPresentation of the following attribute defined in ProductImpl : @Column(name = "DISPLAY_TEMPLATE") @AdminPresentation(friendlyName = "ProductImpl_Product_Display_Template", group = GroupName.Advanced) protected String displayTemplate; Currently, it is displayed as a text field by default as there is no fieldType attribute provided. But I want to display a dropdown select menu with predefined values such as Product and Plan . Here is what I've tried so far: I've created a class DisplayTemplateType that implements BroadleafEnumerationType and defined PLAN and