会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
王起风
博客园
首页
新随笔
联系
订阅
管理
随笔 - 16
文章 - 0
评论 - 0
阅读 -
2240
2021年9月2日
CentOS7 启动Tomcat后无进程运行解决方案
摘要: 解决方案进入到 tomcat 的 bin 目录下, 用以下命令启动 tomcat 即可 总结Windows 下以 ./startup.sh 命令启动 TomcatLinux 下以 ./catalina.sh start 启动 Tomcat 如果出现 Cannot find /usr/local/to
阅读全文
posted @ 2021-09-02 10:45 王起风
阅读(790)
评论(0)
推荐(0)
2021年8月19日
hystrix熔断,降级,限流
摘要: Hystrix断路器 Hystrix是一个用于处理分布式系统的延迟和容错的开源库,在分布式系统里,许多依赖不可避免会调用失败, 比如超时.异常等,Hystrix能够保证在一个依赖出问题的情况下,不会导致整体服务失败,避免级联故障,以提高分布式的弹性。 在某个服务单选出现故障之后,通过断路器的故障监控
阅读全文
posted @ 2021-08-19 02:22 王起风
阅读(111)
评论(0)
推荐(0)
2021年8月15日
springboot启动过程
摘要: 每个SpringBoot程序都有一个主入口,也就是main方法,main里面调用SpringApplication.run()启动整个spring-boot程序,该方法所在类需要使用@SpringBootApplication注解,以及@ImportResource注解(if need),@Spri
阅读全文
posted @ 2021-08-15 05:42 王起风
阅读(114)
评论(0)
推荐(0)
2021年7月22日
Invalid bound statement (not found): XXX.XXX.XXX.XXXDao
摘要: 恢复内容开始 2021-07-22 18:21:25.084 ERROR 28972 [nio-8001-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet]
阅读全文
posted @ 2021-07-22 18:26 王起风
阅读(230)
评论(0)
推荐(0)
2021年7月20日
普通参数与基本注解
摘要: 1.1、注解: @GetMapping("/car/{id}/xx/{Username}") public Map<String,Object> getCar(@PathVariable("id") Integer id, @PathVariable("Username") String Usern
阅读全文
posted @ 2021-07-20 15:38 王起风
阅读(55)
评论(0)
推荐(0)
2021年7月15日
yaml J简介
摘要: YAML 是 "YAML Ain't Markup Language"(YAML 不是一种标记语言)的递归缩写。在开发的这种语言时,YAML 的意思其实是:"Yet Another Markup Language"(仍是一种标记语言)。 非常适合用来做以数据为中心的配置文件 字面量:单个的、不可再分
阅读全文
posted @ 2021-07-15 20:51 王起风
阅读(56)
评论(0)
推荐(0)
SpringBoot自动配置
摘要: @SpringBootConfiguration @EnableAutoConfiguration @ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.clas
阅读全文
posted @ 2021-07-15 13:49 王起风
阅读(65)
评论(0)
推荐(0)
SpringBoot小技巧
摘要: lombok{ 需要引入依赖 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId></dependency> @Slf4j//日志 @ToString//ToString 方法 @Data/
阅读全文
posted @ 2021-07-15 09:48 王起风
阅读(39)
评论(0)
推荐(0)
2021年7月14日
css动画
摘要: @keyframes animation-name animation-duration animation-delay animation-iteration-count animation-direction animation-timing-function animation-fill-mo
阅读全文
posted @ 2021-07-14 13:35 王起风
阅读(20)
评论(0)
推荐(0)
css 过渡
摘要: transition 属性描述 transition 简写属性,用于将四个过渡属性设置为单一属性。 transition-delay 规定过渡效果的延迟(以秒计)。多久开始 transition-duration 规定过渡效果要持续多少秒或毫秒。 transition-property 规定过渡效果
阅读全文
posted @ 2021-07-14 11:32 王起风
阅读(58)
评论(0)
推荐(0)
下一页
公告
昵称:
王起风
园龄:
3年11个月
粉丝:
0
关注:
0
+加关注
<
2025年6月
>
日
一
二
三
四
五
六
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
我的标签
springboot
(7)
css
(5)
出错
(2)
SpringCloud
(1)
随笔档案
2021年9月(1)
2021年8月(2)
2021年7月(13)
阅读排行榜
1. CentOS7 启动Tomcat后无进程运行解决方案(790)
2. css常见的文本样式(307)
3. Invalid bound statement (not found): XXX.XXX.XXX.XXXDao(230)
4. 微服务,云原生,分布式(145)
5. springboot启动过程(114)
点击右上角即可分享