摘要: https://gitee.com/ylimhhmily/SpringCloudTutorial/tree/master hystrix配置不生效问题https://blog.csdn.net/lvyuan1234/article/details/77155919 阅读全文
posted @ 2018-04-14 19:52 coffee9527 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 主要是4.x版本的 比较全面的:https://muyinchen.gitbooks.io/spring-framework-5-0-0-m3/content/3.5-bean/3.5.4-request-session-application-and-websocket-scopes.html 第 阅读全文
posted @ 2018-04-07 23:27 coffee9527 阅读(1355) 评论(0) 推荐(0) 编辑
摘要: 参考解决办法:https://blog.csdn.net/qq_21808961/article/details/77885696 1.点击Project,然后取消勾选Build Automatically 2.重启eclipse 3.点击Project,然后勾选Build Automaticall 阅读全文
posted @ 2018-04-05 10:40 coffee9527 阅读(2533) 评论(1) 推荐(0) 编辑
摘要: 错误信息:web.xml is missing and <failOnMissingWebXml> is set to true 解决办法:https://blog.csdn.net/sinat_22911279/article/details/77454139 阅读全文
posted @ 2018-04-05 10:23 coffee9527 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 错误信息:org.apache.jasper.JasperException: java.lang.NullPointerException 原因:项目依赖的jar包和tomcat容器的依赖jar包有重复,一般为servlet-api.jar、jsp-api.jar 解决方式: 如果是非maven项 阅读全文
posted @ 2018-04-04 15:35 coffee9527 阅读(19054) 评论(1) 推荐(0) 编辑
摘要: 详细错误信息:Failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:run (default-cli) on project spring-mybatis-2: Could not start Tomcat: 阅读全文
posted @ 2018-04-04 11:15 coffee9527 阅读(808) 评论(0) 推荐(0) 编辑
摘要: 参考解决办法:https://www.cnblogs.com/shifu204/p/7260540.html CentOS7关于防火墙的操作:https://blog.csdn.net/zhezhebie/article/details/73342362 阅读全文
posted @ 2018-04-03 23:48 coffee9527 阅读(2727) 评论(0) 推荐(0) 编辑
摘要: 先来一段常用枚举类代码结构 从上面的代码中可以看出枚举的常用结构为:1.枚举实例对象,2.如果有属性就添加私有成员变量。3.构造方法为私有的,防止再创建其他实例对象。4.只有get方法,防止修改原对象的属性值。5,其他方法,比如根据某个属性获取对象实例 下面再深入看看枚举类中一些隐藏的东西 1.枚举 阅读全文
posted @ 2018-04-03 11:43 coffee9527 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 参考 WebService基础学习(一)—基础知识:http://www.cnblogs.com/yangang2013/p/5708647.html WebService基础学习(二)—三要素:http://www.cnblogs.com/yangang2013/p/5708917.html We 阅读全文
posted @ 2018-04-02 17:33 coffee9527 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 错误信息:Cannot find any registered HttpDestinationFactory from the Bus. 报错主要是因为缺少jetty依赖 一般添加如下依赖即可 <dependency> <groupId>org.apache.cxf</groupId> <artif 阅读全文
posted @ 2018-04-02 15:56 coffee9527 阅读(5811) 评论(1) 推荐(1) 编辑