上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: https://www.cnblogs.com/Leo_wl/p/5735001.html#_label0 https://blog.csdn.net/li_cheng_liang/article/details/75332938 阅读全文
posted @ 2018-06-08 17:53 一万年以前 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 一、tomcat开启HTTPS配置 1) 准备证书 使用jdk工具keytool生成一个ssl测试用证书, 一路按照提示操作输入即可 [plain] view plain copy keytool -genkey -alias tomcat -keyalg RSA -keystore F:\sso\ 阅读全文
posted @ 2018-01-14 22:49 一万年以前 阅读(1187) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/lk10207160511/article/details/51336791 http://www.cnblogs.com/ityouknow/p/5730412.html 阅读全文
posted @ 2017-12-07 10:53 一万年以前 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 科普: IDEA 全称IntelliJ IDEA,是java语言开发的集成环境,IntelliJ在业界被公认为最好的java开发工具之一,尤其在智能代码助手、代码自动提示、重构、J2EE支持、Ant、JUnit、CVS整合、代码审查、 创新的GUI设计等方面的功能可以说是超常的。IDEA是JetBr 阅读全文
posted @ 2017-11-09 16:10 一万年以前 阅读(3584) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/hats8888/article/details/53886591 http://blog.csdn.net/gong_hui2000/article/details/48155547 http://blog.csdn.net/zhang116868/art 阅读全文
posted @ 2017-10-26 23:22 一万年以前 阅读(133) 评论(0) 推荐(0) 编辑
摘要: spring-boot: http://www.ityouknow.com/spring-boot 这里的内容都可以学习下: https://zhuanlan.zhihu.com/dreawer?topic=Spring%20Boot http://blog.csdn.net/wtopps/arti 阅读全文
posted @ 2017-09-27 16:59 一万年以前 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 问题:在对某一表空间进行新建表的时候,出现ora-01658的错误。 create 语句: create table OA_ORGCONFIG( OAOC_UNID INTEGER not null, OAOC_UUID VARCHAR2(32) not null, OAOC_CDATE DATE, 阅读全文
posted @ 2017-09-06 17:09 一万年以前 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 1.先进行表分析(一定要执行此步,否则查询空表可能不准确) select 'analyze table '||table_name||' compute statistics;' from user_tables; 2.再查询哪些表是空的(此步可以省略,直接进行第三步) select table_n 阅读全文
posted @ 2017-07-21 11:47 一万年以前 阅读(1627) 评论(0) 推荐(0) 编辑
摘要: 问题: spring-data-jpa 中,如果使用了one-to-many , many-to-one的注释,会在Jackson 2.7.0 进行json字符串化的时候出现错误. 解决办法: 通过在主表的pojo中增加@JsonManagedReference来注解关联字段 在子表的pojo中增加 阅读全文
posted @ 2017-04-12 16:42 一万年以前 阅读(1352) 评论(0) 推荐(0) 编辑
摘要: 5.7 中的performance_schema 已经有能力监控mysql 的内存使用情况了,对于这一点也是要通过instrument 来实现的,由于内存这一块没有对应的consumer 所以只要 配置好instrument 就行了 1、例子: /etc/my.cnf 阅读全文
posted @ 2017-04-10 09:48 一万年以前 阅读(3457) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页