上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 40 下一页
摘要: Mysql为了安全性,在默认情况下用户只允许在本地登录,可是在有此情况下,还是需要使用用户进行远程连接,因此为了使其可以远程需要进行如下操作:一、允许root用户在任何地方进行远程登录,并具有所有库任何操作权限,具体操作如下:在本机先使用root用户登录mysql:mysql -u root -p" 阅读全文
posted @ 2018-04-20 17:12 ldp.im 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 使用jpa保存查询数据都很方便,除了在代码中加入数据外,可以使用sql进行导入。目前我只会一种方法,把数据集中在一个sql文件中。 而且数据在导入中常常具有先后关系,需要用串行的方式导入。 第一步:配置 需要指定spring boot对数据有create的配置,才能自动加载sql文件 [java] 阅读全文
posted @ 2018-04-13 15:21 ldp.im 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 报错:org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: net.sppan.base.entity.User.organizations, could not in 阅读全文
posted @ 2018-04-11 16:00 ldp.im 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 参照https://blog.csdn.net/yingxiake/article/details/51016234#reply https://blog.csdn.net/choushi300/article/details/71438693 https://blog.csdn.net/zhuzh 阅读全文
posted @ 2018-04-07 18:10 ldp.im 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 采用Spring拦截器的方式进行业务处理。HandlerInterceptor拦截器常见的用途有: 1、日志记录:记录请求信息的日志,以便进行信息监控、信息统计、计算PV(Page View)等。 2、权限检查:如登录检测,进入处理器检测检测是否登录,如果没有直接返回到登录页面; 3、性能监控:有时 阅读全文
posted @ 2018-04-07 09:58 ldp.im 阅读(208) 评论(0) 推荐(0) 编辑
摘要: //SecurityUtils.getSubject().getPrincipal(); 就可以获取了protected User getCurrentUser(){ return (User) SecurityUtils.getSubject().getPrincipal();} 阅读全文
posted @ 2018-04-06 00:20 ldp.im 阅读(743) 评论(0) 推荐(0) 编辑
摘要: 1: 官网下载:https://windows.php.net/download#php-7.2 阅读全文
posted @ 2018-04-02 16:59 ldp.im 阅读(390) 评论(0) 推荐(0) 编辑
摘要: I had a similar problem when running a spring web application in an Eclipse managed tomcat. I solved this problem by adding maven dependencies in the 阅读全文
posted @ 2018-03-30 14:23 ldp.im 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 梳理一下微信开发的步骤 1:公众号开发(接口调用) 第一步,首先要接入公众号,微信需要token验证,也就是你给微信发请求,微信给你返回数据,你解密后在返回数据,验证你设置的token和你程序里的token是否一致; 阅读全文
posted @ 2018-03-19 11:35 ldp.im 阅读(141) 评论(0) 推荐(0) 编辑
摘要: return '<a id="" class="ace_button" href="#" onclick="showItems(\''+row.id+'\',\''+row.tag+'\')"><i class="fa-fa-trash-o">查看明细</i></a>' 阅读全文
posted @ 2018-03-18 22:32 ldp.im 阅读(409) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 40 下一页