摘要: @Controller注解表明这是一个控制器类 在方法上加注解@ResquestMapping(value = "url", method = RequestMethod.POST)表示拦截以post请求的发送的url地址,如果不写method默认的话会拦截get和post请求 (1)配合Inter 阅读全文
posted @ 2018-07-14 15:17 anjunshuang 阅读(3150) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-07-14 13:47 anjunshuang 阅读(101) 评论(0) 推荐(0)
摘要: 白名单 查询审核中的白名单用户 1.查询所有在审核中的用户select * from loan_customers where status = 2 and cus_name not in--2.查询所有黑名单用户(select cus.cus_name from loan_customers cu 阅读全文
posted @ 2018-07-12 11:11 anjunshuang 阅读(258) 评论(0) 推荐(0)
摘要: 1.controller中查出数据Map<String, Object> custom = customersController.basic(custId);model.put("customer", custom);2.JSP中接收code值调用自定义标签<div class="profile- 阅读全文
posted @ 2018-07-11 13:26 anjunshuang 阅读(122) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2018-07-10 20:00 anjunshuang 阅读(0) 评论(0) 推荐(0)
摘要: 安装完成后设置$ git config --global user.name "Your Name"$ git config --global user.email "email@example.com"初始化一个仓库:git init添加文件到仓库:git add <file>提交:git com 阅读全文
posted @ 2018-07-09 15:44 anjunshuang 阅读(87) 评论(0) 推荐(0)
摘要: 1.dubbo启动异常,提供者未暴露服务 provider未提供配置Related cause: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'loanQuotaReco 阅读全文
posted @ 2018-07-09 15:15 anjunshuang 阅读(450) 评论(0) 推荐(0)
摘要: dea项目移除module在maven中移除。(右键 maven remove project)再次添加无论是root模块还是子模块都需要重新import(File project structure module) 阅读全文
posted @ 2018-07-07 17:14 anjunshuang 阅读(5118) 评论(0) 推荐(0)
摘要: @Autowiredprivate CfcaSealUserMapper cfcaSealUserMapper; 阅读全文
posted @ 2018-07-06 17:21 anjunshuang 阅读(195) 评论(0) 推荐(0)
摘要: async为false后ajax同步请求,回挂起其后面的js代码执行指导ajax返回结果后继续执行不配置默认为true为异步,异步不会挂起ajax的执行,会继续执行后续的代码,js代码的执行速度比你ajax返回返回数据快多了,所以ajax没返回就已经执行,导致数据没有填充到下拉框。 阅读全文
posted @ 2018-07-06 13:50 anjunshuang 阅读(182) 评论(0) 推荐(0)