上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 36 下一页
摘要: The bean 'xxxUserMapper' could not be injected because it is a JDK dynamic proxy 原因 Mapper代码当时如下: public interface XxxUserMapper extends Mapper<XxxUse 阅读全文
posted @ 2022-10-31 16:37 使用D 阅读(3109) 评论(0) 推荐(1)
摘要: 可用通过BeanInfo接口创建BeanInfo类,并提供关于bean的方法、属性、事件和其他特性的显式信息。 通用方式 BeanInfo beanInfo = Introspector.getBeanInfo(TradeTransaction.class); 其中Introspector类提供了标 阅读全文
posted @ 2022-09-02 00:22 使用D 阅读(181) 评论(0) 推荐(0)
摘要: Demo private static String zookeeperHost = System.getProperty("zookeeper.address", "127.0.0.1"); private static String zookeeperPort = System.getPrope 阅读全文
posted @ 2022-09-01 01:23 使用D 阅读(197) 评论(0) 推荐(0)
摘要: $str = 'name'; 转换为'n**e' 使用下面方法: $str = 'name';return self::actionIndex($str,1,strlen($str)-2,'*'); /** * 脱敏 * @param $string * @param $start * @param 阅读全文
posted @ 2022-08-25 10:15 使用D 阅读(267) 评论(0) 推荐(0)
摘要: sudo apt-get update sudo apt-get intstall curl sudo apt-get intstall vim sudo apt install docker.io docker vesion Client: Version: 20.10.12 API versio 阅读全文
posted @ 2022-08-23 23:18 使用D 阅读(54) 评论(0) 推荐(0)
摘要: 前端请求直接打到网关上,所以我们可以在网关上做一些汇总参数,方面下游服务使用: ip:服务器地址 tenantCode:租户 clientType:客户端类型,H5、wechat、alipay等 platform:平台,移动端、PC端 os:操作系统、iphone、Android 经纬度 count 阅读全文
posted @ 2022-08-23 23:17 使用D 阅读(52) 评论(0) 推荐(0)
摘要: 客户希望在配置的商品集合中设置“所有商品只能买一件”(即每个客户只能购买一件商品),但是配置商品集合时,配置了每款商品只能买一件。 我们做的系统功能与客户希望的或者预期的不一致,要重新review他们想做的活动和实际的配置。 实际上也是对系统的功能的理解出现了偏差,我们应该从功能说明上、培训上、实际 阅读全文
posted @ 2022-08-23 23:11 使用D 阅读(22) 评论(0) 推荐(0)
摘要: 判断是否为空 if (!$cart_num || !$cart_info) return []; 数组循环 $compute_arr = ['coupon_price', 'integral_price', 'postage_price', 'use_integral', 'one_brokerag 阅读全文
posted @ 2022-08-18 00:00 使用D 阅读(22) 评论(0) 推荐(0)
摘要: 可以根据业务部门人员配比、业务人员对业务投入的日常时间比例情况,来判断一系列功能是否会被客户用到。 比如两个客户都有相同的业务部门,一个100人与一个10人,那么他们对系统的诉求一定是不同: 100人的部门对业务是精细化运营 而10人的部门是粗放型的运营。 根据我们当前服务的主要客户判断我们开发功能 阅读全文
posted @ 2022-08-17 23:58 使用D 阅读(97) 评论(0) 推荐(0)
摘要: 1、Reason: CORS header 'Access-Control-Allow-Origin' does not match 'xyz' 原因:CORS 头 'Access-Control-Allow-Origin'与'xyz'不匹配简而言之,发出请求的原点与 Access-Control- 阅读全文
posted @ 2022-08-17 23:38 使用D 阅读(17013) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 36 下一页