4.2开发启动和打包都正常
4.2启动正常截图:
4.2打包正常截图:
升4.3异常情况说明如下: 开发启动正常,但是在打包环节就出错了,不知道哪里操作不对:
4.3正常启动截图:
4.3异常打包截图:
相关源码中有用到aop:
@Before(PolicesInterceptor.class) public List<BasCustomer> getCustomer() throws Exception{ String key = getUser().get("cloudwarehouse") + this.getUserCode(); return CacheKit.get(customerCacheName, key, new IDataLoader() { @Override public Object load() { String sql = "select customer_name,customer_code,customer_abbreviate from bas_customer order by customer_code"; return BasCustomer.dao.find(sql); } }); }
请波总看看,是否升级4.3需要配置什么,目前降到4.2正常使用中