Stella981 Stella981
4年前
Jenkins的重启几种方式
一、在Linux中Jenkins启动/重启/停止命令启动servicejenkinsstart重启servicejenkinsrestart停止servicejenkinsstop二、在Jenkins页面上启动/重启/停止命令访问我们部署的Jenkins服务应用网址。我这里是
Wesley13 Wesley13
4年前
B树C语言代码实现
在这里实现的是在主存中的操作,没有进行文件的存储和修改。头文件btree.h:ifndef_BTREE_H  define_BTREE_H   defineMIN_T3 defineMAX_T(MIN_T2)typedefstructBTreeNod
Stella981 Stella981
4年前
SVN更改文件的可执行权限属性
删除svn可执行属性命令为: svnpropdelsvn:executable file\_path下面介绍下更改SVN文件的可执行权限属性:linux:   svnpropsetsvn:executableonfile\_path; //如果想删除属性的话使用命令:svnpropdelsvn:executablef
Wesley13 Wesley13
4年前
IE8 下 select option 内容过长 , 展开时信息显示不全问题解决办法
/  IE8 下 select option 内容过长 , 展开时信息显示不全 , 简单折衷的方式就是给 option 加上 title 属性 , 但是又不想一个个的修改,怎么办呢,代码如下 : /$(document).delegate('select', 'mouseover', function(){
Stella981 Stella981
4年前
SpringBoot2.x打包成war(看这篇就够了)
springboot默认打包成jar,如果想打包成war,则需要做以下三步。1.修改pom.xml文件  a.将jar改成war1<groupIdcom.test</groupId2<artifactId01springbootHelloWorld</artifactId3<versi
Stella981 Stella981
4年前
Linux中递归更改文件扩展名的命令
比如我需要将jpg结尾的图片文件修改为png结尾的如果能用rename命令,运行下面的find.name'.jpg'execrename.jpg.png{}如果不能用rename命令,使用下面的find.name".jpg"execbashc'mv"$1"
Stella981 Stella981
4年前
Linux 开机执行脚本方法
1\.方式一修改/etc/rc.localtail2/etc/rc.localtouch/root/aa.txt/bin/bash/root/shell/redisstart.sh/dev/null2/dev/null2\.方式二chkconfig管理 1第一种脚本!/bin/shC
Wesley13 Wesley13
4年前
C# 谁改了我的代码
本文告诉大家一个特殊的做法,可以修改一个字符串常量<!more我们来写一个简单的程序,把一个常量字符串输出privateconststringstr"lindexi";staticvoidMain(stringargs){
Stella981 Stella981
4年前
Linux 下如何处理包含空格和特殊字符的文件名
Linux下如何处理包含空格和特殊字符的文件名作者: AvishekKumar(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fwww.tecmint.com%2Fmanagelinuxfilenameswithspeci
Wesley13 Wesley13
4年前
@Secured()、 @PreAuthorize() 、 @RolesAllowed()
在Springsecurity的使用中,为了对方法进行权限控制,通常采用的三个注解,就是@Secured()、@PreAuthorize()、@RolesAllowed()。示例,修改用户密码必须是ADMIN权限,可以用三种方法:@Secured({"ROLE_ADMIN"})publicvoidchangePassword(