mall icon indicating copy to clipboard operation
mall copied to clipboard

mall项目是一套电商系统,包括前台商城系统及后台管理系统,基于SpringBoot+MyBatis实现,采用Docker容器化部署。 前台商城系统包含首页门户、商品推荐、商品搜索、商品展示、购物车、订单流程、会员中心、客户服务...

Results 59 mall issues
Sort by recently updated
recently updated
newest added

商品属性录入方式选从列表选择,添加商品是输入框, 应该是复选框吧?

请问大神有没有商城pc端的支持?

不知道mall是否提供分库分表的解决方案? 当然我知道 springboot 本身是可以与shardingsphere 集成的。 但诸如像哪些表应该做分库分表, 如何进行分表策略才最佳性能。 这些点当然是希望官方能够提供解决方案是最合适的

1.商品和sku规格名规格值无对应关系 2.商品配置没有渠道对应关系 不同渠道展示不同商品 3.商品配置价格体系单一,sku没有单独配置项

调整过滤器的执行顺序 如果不调整的话,那么没有登录并且非白名单中的请求就会经过认证和授权里面的逻辑,既然都没有认证,就不应该跑到授权的逻辑里面,调整过滤器的执行顺序可以保证这种情况不会跑到授权的逻辑里面

代码里没发现新增商品、修改商品,同步es搜索的地方

在mall-security模块中的SecurityConfig对dynamicSecurityFilter的配置可能导致二次鉴权,主要原因可能是在该模块下的DynamicSecurityFilter进行配置时忽略了FILTER_APPLY的配置(参考FilterSecurityInterceptor类的实现),并且在SecurityConfig中重复使用了ExpressionUrlAuthorizationConfigurer配置白名单和OPTIONS请求,使得鉴权过滤器被重复配置两次,该配置问题同时导致了 https://github.com/macrozheng/mall/issues/587 我的解决方案是直接让DynamicSecurityFilter继承FilterSecurityInterceptor类 ![image](https://github.com/macrozheng/mall/assets/75790681/d38a0c14-a1b9-46ff-92b6-cb201b2e6cd6) ![image](https://github.com/macrozheng/mall/assets/75790681/6833ca49-771e-4bd8-be05-3a939e735026) ![image](https://github.com/macrozheng/mall/assets/75790681/c3b7b352-90de-4df4-805f-24736a9499d6) 然后把SecurityConfig中的addFilterBefore改成addFilterAt 简单测试了一下好像是没什么问题(因为是萌新所以就是简单测了一下,也没有过一遍完整测试流程),并且在 https://github.com/macrozheng/mall/issues/587 提到的日志重复问题也没有发生,如果大佬有时间的话希望能够看看这个有没有什么问题

In the Java controllers the @RequestMappings are to be replaced with @GetMapping @PostMappings @PutMappings @DeleteMapping to make code more readable and short . ` @ApiOperation("编辑活动") @RequestMapping(value = "/update/{id}", method =...