51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#ONE
spring boot + embed tomcat + standalone jar的内存泄露问题
前一阵遇到了一个很坑的内存泄露问题,记录于此:有个项目采用springcloud重构后,部署到线上(其中有一个接口,大概每天调用量在1千万次左右),发现zabbix监控里,linux的可用内存一直持续下降,每次重启后,大概能撑1天,就算业务高峰过去了,内存也不见回收,曲线图如下:发生故障时,用top-m看java进程占...
代码星球
·
2020-04-06
spring
boot
embed
tomcat
standalone
velocity模板引擎学习(4)-在standalone的java application中使用velocity及velocity-tools
通常velocity是配合springmvc之类的框架在web中使用,但velocity本身其实对运行环境没有过多的限制,在单独的javaapplication中也可以独立使用,下面演示了利用velocity模板引擎生成『每日发货单』邮件内容:一、先定义邮件内容模板:mail-template.vm<string...
代码星球
·
2020-04-06
velocity
模板
引擎
学习
standalone
取代深克隆cloneDeep的方法 --- immer
参考阅读:https://juejin.im/post/5c079f9b518825689f1b4e88一、使用官网:https://immerjs.github.io/immer/docs/introductionimportproducefrom'immer'constnextData=produce(原始data...
代码星球
·
2020-04-06
取代
克隆
cloneDeep
方法
immer
web component
浏览器发展至今,很多浏览器已经很好的支持webcomponent了,如果实在需要兼容IE、Edge还可以用pollyfill来增强一下浏览器最全的使用文档: chrome开发者相关:https://developers.google.com/web/fundamentals/web-components/ vue-...
代码星球
·
2020-04-06
web
component
js深入研究之扩展类,克隆对象,混合类(自定义的extend函数,clone函数,与augment函数)
1.类扩展/*EditInPlaceField类*//*扩展函数*/functionextend(subClass,superClass){varF=function(){};F.prototype=superClass.prototype;subClass.prototype=newF();subClass.prot...
代码星球
·
2020-04-06
函数
js
深入研究
扩展
克隆
hdu1010 Tempter of the Bone(DFS+剪枝)
ProblemDescriptionThedoggiefoundaboneinanancientmaze,whichfascinatedhimalot.However,whenhepickeditup,themazebegantoshake,andthedoggiecouldfeelthegroundsinking.H...
代码星球
·
2020-04-06
hdu1010
Tempter
of
the
Bone
【iOS开发-27】解决方式:An error was encountered while running(Domain=FBSOpenApplicationErrorDomain, Code=4)
iOSsimulator出现故障,提示:Anerrorwasencounteredwhilerunning(Domain=FBSOpenApplicationErrorDomain,Code=4)解决方式:[iOSSimulator]>>>[RestContentsandSettings...]>...
代码星球
·
2020-04-06
iOS
开发
解决
方式
An
转 Spring 组件 <context:component-scan base-pakage="">用法
1.如果不想在xml文件中配置bean,我们可以给我们的类加上spring组件注解,只需再配置下spring的扫描器就可以实现bean的自动载入。<!--注解注入--><context:annotation-config></context:annotation-config><...
代码星球
·
2020-04-06
Spring
组件
用法
关于Spring注解 @Service @Component @Controller @Repository 用法
@Component相当于实例化类的对象,其他三个注解可以理解为@Component的子注解或细化。 在annotaion配置注解中用@Component来表示一个通用注释用于说明一个类是一个spring容器管理的类,此类将有spring扫描并加入容器参与ioc。即就是该类已经拉入到spring的管理中了。通...
代码星球
·
2020-04-06
关于
Spring
注解
@Service
@Component
节约内存,请使用标签页管理工具:onetab、better onetab
OneTab可以管理chrome和firefox的标签页,把暂时不用的标签页收藏起来,形成一个列表,当然,可以对列表进行分类管理,以方便后续打开查看。这样就不用打开很多tab,占用大量内存。由于OneTab的firefox很久没有更新,最新版本的firefox已经不适配,所有可以使用BetterOneTab代替...
代码星球
·
2020-04-06
onetab
节约
内存
请使用
标签
JS的jsoneditor,用来操作Json格式的界面;json-editor用来根据json数据生成界面
1、jsoneditorhttps://github.com/josdejong/jsoneditorhttps://jsoneditoronline.org/效果如下: 2、json-editor老版位置:https://github.com/jdorn/json-editor新版位置:https://gi...
代码星球
·
2020-04-06
用来
界面
JS
jsoneditor
操作
git log --oneline --graph的读法
星号表明这个提交所在的分支;最左边的直线表示当前分支的历史状态,从图看,当前分支HEAD是master分支;提交历史是:8cfbb25<--d486463<--a88c595<--fc46826<--275823b<--5d66385<--33c6d2e,箭头方向表示依赖...
代码星球
·
2020-04-06
git
log
--oneline
--graph
读法
Please configure Spring facet or use 'Create Default Context' to add one including all unmapped files.
有时候我们刚进入IntellijIDEA时会出现这样一个情况,原因是IDEA没有找到spring的配置文件,我们需要添加spring文件给idea管理 参考:1、https://www.jetbrains.com/help/idea/2018.1/spring-support.html?utm...
代码星球
·
2020-04-06
Please
configure
Spring
facet
or
More than one fragment with the name [spring_web] was found. This is not legal with relative orderin
最近在搭建一个springmvc项目时遇到“Morethanonefragmentwiththename[spring_web]wasfound.Thisisnotlegal...”报错,详细的日志信息如下:……五月08,201911:49:52下午org.apach...
代码星球
·
2020-04-06
with
More
than
one
fragment
At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger fo
一、文章前言 本文是亲测有效解决AtleastoneJARwasscannedforTLDsyetcontainednoTLDs问题,绝对不是为了积分随便粘贴复制然后压根都没有用系列二、问题描述 1.今天测试发现Tomcat启动贼慢,当然这个不是随机数...
代码星球
·
2020-04-06
for
At
least
one
JAR
首页
上一页
...
62
63
64
65
66
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他