1 问题release apk运行奔溃提示错误如下Fatal Exception: org.greenrobot.greendao.DaoException: Could not init DAOConfig
原创
2021-08-12 14:52:35
627阅读
1 问题release apk运行奔溃提示错误如下Fatal Exception: org.greenrobot.greendao.DaoException: Could not init DAOConfig at org.greenrobot.greendao.h.a.<init>(DaoConfig.java:28) at org.greenrobot.gr
原创
2022-03-07 17:47:20
368阅读
*
* @param entity
* 业务对象实例
*/
public Entity create(Entity entity) throws DaoException {
try {
get...
原创
2023-05-19 00:07:12
34阅读
文章目录(一)应用分层1. 【推荐】图中默认上层依赖于下层,箭头关系表示可直接依赖,如:开放接口层可以依赖于Web 层,也可以直接依赖于 Service 层,依此类推:2. 【参考】 (分层异常处理规约) 在 DAO 层,产生的异常类型有很多,无法用细粒度的异常进行 catch,使用 catch(Exception e)方式,并 throw new DAOException(e)3. 【参考】分层
转载
2023-10-12 12:00:31
973阅读