摘要: pid = `ps -ef|grep java|grep -v grep|awk '{print $2}'` for id in $pid do echo "kill -9 pid:" $id kill -9 $id done 然后给文件执行授权 chmod 777 文件名 阅读全文
posted @ 2021-11-25 10:10 奶牛花花 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 如果出现这个错误,把以前的META-INF下的文件删除就可以了 阅读全文
posted @ 2021-11-22 11:22 奶牛花花 阅读(29) 评论(0) 推荐(0) 编辑
摘要: https://downloads.mysql.com/archives/community/ 阅读全文
posted @ 2021-11-10 09:27 奶牛花花 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1.首先在Settings配置界面找到Live Templates: 2.建立Template Group模板分组: 3.设置模板Live Template 需要注意的是:光标所在位置的设置是用$start$ 4.选择可适用的范围: 测试 阅读全文
posted @ 2020-12-24 16:20 奶牛花花 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 1. bin/startup.bat 把call "%EXECUTABLE%" start %CMD_LINE_ARGS%改成 call "%EXECUTABLE%" run %CMD_LINE_ARGS% 2.bin/catalina.bat 在%ACTION%后面添加以下内容 >> %CATAL 阅读全文
posted @ 2020-12-22 16:42 奶牛花花 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 公司要使用springmvc自带 form标签,在网上看了两天,有点收获,先小记一下. html <form:form action="form.do" modelAttribute="student" > <table> <tr> <td>最喜欢的运动:</td> <td> <!--id 为stu 阅读全文
posted @ 2020-12-13 16:54 奶牛花花 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 所需依赖 <dependencies> <!--核心包--> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>2.3.0</version> </depende 阅读全文
posted @ 2020-12-09 16:43 奶牛花花 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 导入依赖 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>5.1.5.RELEASE</version> </dependency 阅读全文
posted @ 2020-12-07 13:53 奶牛花花 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 导入依赖 <!--核心包--> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>2.3.0</version> </dependency> 写一个类实现Job接 阅读全文
posted @ 2020-12-07 11:03 奶牛花花 阅读(101) 评论(0) 推荐(0) 编辑
摘要: import java.util.concurrent.*; public class Testss { public static void main(String[] args) throws ExecutionException, InterruptedException { //创建一个线程 阅读全文
posted @ 2020-11-12 14:26 奶牛花花 阅读(311) 评论(0) 推荐(0) 编辑