会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
轻语
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
8
9
10
11
12
13
14
15
16
下一页
2021年3月14日
搭建环境
摘要: 1、安装虚拟机vware,网盘里有 vmware workstation15许可证密钥: AU15A-6XZEH-0891Q-LGYXV-YG0ZFCF50K-A1E5P-0885Z-9YMGC-QC0R6YA352-06ZD2-M8D7Q-HPZXZ-W3RC0FG3DK-2PE85-H80AP-
阅读全文
posted @ 2021-03-14 00:17 傲云萧雨
阅读(121)
评论(0)
推荐(0)
2021年3月10日
Redis学习day1_非关系心数据库介绍
摘要:
阅读全文
posted @ 2021-03-10 22:07 傲云萧雨
阅读(33)
评论(0)
推荐(0)
2021年3月9日
SpringBoot_Actuator_AdminUI
摘要: AdminUI的原理: 服务端: 1、pom.xml <dependencies> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-server</artifactId> <ve
阅读全文
posted @ 2021-03-09 22:38 傲云萧雨
阅读(242)
评论(0)
推荐(0)
2021年3月8日
SpringBoot监控中心
摘要: 1什么是Spirngboot的监控中心 针对微服务服务器监控,服务器内存变化(堆栈内存、线程、日志管理登)、检测服务器配置连接地址是否可用,(模拟访问,懒加载)、统计现在有多少个bean(是Spring容器中的bean),统计SpringMvc@RequestMapping(统计http接口) Ac
阅读全文
posted @ 2021-03-08 23:11 傲云萧雨
阅读(150)
评论(0)
推荐(0)
springboot项目打包外部运行
摘要: 注意因为springboot内置的tomcat服务器是8.25,建议使用tomcat9来运行,把war包放到tomcat9下的webapps下面 直接运行即可。 1、修改打包方式 在pom.xml里设置 <packaging>war</packaging> 2、移除嵌入式tomcat插件(sprin
阅读全文
posted @ 2021-03-08 22:22 傲云萧雨
阅读(218)
评论(0)
推荐(0)
2021年3月7日
springboot 使用undertow代替tomcat容器提高吞吐量
摘要: springboot里面默认的容器是tomcat的吞吐量是平均5000 undertow的吞吐量平均是8000 pom.xml文件依赖信息,先解除tomcat依赖,然后再新增undertow依赖。 使用apache-jmeter压力测试工具测试吞吐量 步骤: 1打开jmeter.bat 2新建一个线
阅读全文
posted @ 2021-03-07 23:06 傲云萧雨
阅读(732)
评论(0)
推荐(0)
2021年3月5日
springboot—JVM性能参数调优
摘要: JVM参数调优-影响到整体运行的吞吐量 调优策略:初始化堆内存与最大相同 -Xms:设置java堆栈的初始化大小 -Xmx:设置java最大的java堆大小 本地Eclipse调优 实际参数 -XX:+PrintGCDetails -Xmx32M -Xms32M 外部运行调优 java -serve
阅读全文
posted @ 2021-03-05 23:26 傲云萧雨
阅读(1588)
评论(0)
推荐(0)
2021年3月4日
springbootDay3
摘要: 1、<!-- 使用用devtools,监听classPath下的文件变动,并且会立即重启应用,因为采用的是虚拟机机制,改项重启是很快的 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-bo
阅读全文
posted @ 2021-03-04 22:05 傲云萧雨
阅读(37)
评论(0)
推荐(0)
springboot_Mybaits_PageHelper
摘要: public PageInfo<User> findListUser(int startPage,int pageSize){ PageHelper.startPage(startPage, pageSize); List<User> users=userMapper.findListUser();
阅读全文
posted @ 2021-03-04 21:20 傲云萧雨
阅读(58)
评论(0)
推荐(0)
UserService1
摘要: package com.xiangwen.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org
阅读全文
posted @ 2021-03-04 20:14 傲云萧雨
阅读(46)
评论(0)
推荐(0)
上一页
1
···
8
9
10
11
12
13
14
15
16
下一页
公告