罗燕仪贤

导航

 

摘要: 错误问题 java.lang.AbstractMethodError: Method com/mchange/v2/c3p0/impl/NewProxyPreparedStatement.isClosed()Z is abstractat com.mchange.v2.c3p0.impl.NewPr 阅读全文
posted @ 2019-06-15 14:13 初夏之仪 阅读(217) 评论(0) 推荐(0) 编辑
 

2019年8月8日

摘要: 输入的值 错误 总结错误 1、JSON由于不支持Int64所以通常对大数在JSON处理是使用String来表达。 2、MYSQL表结构存id时用的是int现在是值溢出导致出错了。 阅读全文
posted @ 2019-08-08 10:34 初夏之仪 阅读(144) 评论(0) 推荐(0) 编辑
 

2019年7月13日

摘要: css代码 注意: 这里要用append添加内容,不用html 两者都是在某一个元素的内部添加内容。区别在于:append是在原有基础上增加,html中是替换当前所有内容 阅读全文
posted @ 2019-07-13 16:51 初夏之仪 阅读(2434) 评论(1) 推荐(0) 编辑
 

2019年7月3日

摘要: application.properties 配置 阅读全文
posted @ 2019-07-03 11:41 初夏之仪 阅读(260) 评论(0) 推荐(0) 编辑
 
摘要: 批量替换某一个字符带有南字的替换成东 UPDATE ims_tag_log SET remark = replace(remark, '南', '东') 阅读全文
posted @ 2019-07-03 11:28 初夏之仪 阅读(789) 评论(0) 推荐(0) 编辑
 

2019年6月21日

摘要: 1、SpringCloud是什么 Spring Cloud 是一系列框架的有序集合,它利用 Spring Boot 的开发便利性简化了分布式系统的开发,比如服务发现、服务网关、服务路由、链路追踪等。Spring Cloud 并不重复造轮子,而是将市面上开发得比较好的模块集成进去,进行封装,从而减少了 阅读全文
posted @ 2019-06-21 15:19 初夏之仪 阅读(138) 评论(0) 推荐(0) 编辑
 

2019年6月15日

摘要: 解决方案:SpringBoot2.x版本之后servlet.context-path要改成server.servlet.context-path 阅读全文
posted @ 2019-06-15 14:18 初夏之仪 阅读(1544) 评论(0) 推荐(0) 编辑
 

2019年5月30日

摘要: file->new->other 搜索maven, 右键项目点击Properties,然后Project Facets 项目结构 创建一张角色表lv_role 配置pom.xml 在src/main/resources文件下 (1)添加一个config文件夹,文件夹中添加SqlMapConfig.x 阅读全文
posted @ 2019-05-30 21:23 初夏之仪 阅读(1214) 评论(0) 推荐(0) 编辑
 
摘要: 1 springboot内置的tomcat为8.5.23,我们需要指定springboot的内置tomcat版本 2 修改pom.xml文件,增加7.0.90 3 4 UTF-8 5 UTF-8 6 1.8 7 7.0.90 8 9 10 11 org.apache.tomcat 12 tomc... 阅读全文
posted @ 2019-05-30 13:02 初夏之仪 阅读(1027) 评论(0) 推荐(0) 编辑
 

2019年5月28日

摘要: public static void main(String[] args){ int a=1; int b=1; int temp; for (int i = 1; i <=30; i++) { System.out.println("第"+i+"位数"+a); temp=a+b; a=b; ... 阅读全文
posted @ 2019-05-28 14:04 初夏之仪 阅读(703) 评论(0) 推荐(0) 编辑