xiaostudy
xiaostudy
全部文章
未归档
AJAX(1)
Apache(4)
bat脚本(2)
c(1)
css(3)
eclipse(31)
hibernate(4)
HTML(6)
idea编译器(2)
JavaScript(4)
Javase知识点整理(18)
Java分享(8)
jQuery(9)
JSP(1)
mybatis(4)
MySQL(11)
Oracle(5)
spring(15)
springMVC(8)
struts2(7)
tomcat(4)
webservice(10)
windchill(11)
XML(2)
其他工具(11)
收藏专用(2)
电脑其他(10)
编译工具分享(2)
归档
标签
去牛客网
登录
/
注册
xiaostudy的博客
全部文章
/ 未归档
(共114篇)
idea设置创建类的注释模板
打开settings>>Editor>>File and Code Templates>>Includes>>File Header
idea
2019-07-26
0
523
springboot定时任务
1、主程序添加注解 import org.springframework.scheduling.annotation.EnableScheduling; @EnableScheduling 2、定时任务 可在主程序添加方法,也可在service类添加方法 packag...
springboot
2019-07-25
0
667
springboot备份mysql后发送邮件并删除备份文件,支持win和Linux
首先加入springboot的邮箱依赖 <!--邮箱依赖--> <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-mail --> <depe...
Java
MySQL
springboot
Linux
2019-07-25
0
1717
date.toLocaleString()的替换
Date date = new Date(); System.out.println("前:" + date.toLocaleString()); SimpleDateFormat sdf = (SimpleDateFormat) DateFormat.getDate...
Java
2019-07-23
0
624
springcloud【基于springboot1.x】的简单发布服务和使用
1、新建一个springboot 1.x项目【2.x之上有bug,就没测试】 就是新建一个注册中心 2、等下载完,注册中心配置application.yml server: port: 8761 eureka: instance: hostname...
springcloud
2019-07-22
0
589
springboot的mapper.xml在src下问题
在pom.xml里面的build标签加上resources说明 <resources> <!-- mapper.xml文件在java目录下 --> <resource> <directory>src/mai...
springboot
2019-07-22
0
789
springboot集成kaptcha验证码
在pom.xml引入依赖 <!-- 验证码 --> <!-- https://mvnrepository.com/artifact/com.github.penggle/kaptcha --> <dependency> <groupId...
springboot
2019-07-22
0
603
eclipse设置格式化tab为4个空格和idea一样
eclipse
2019-07-19
0
659
idea的maven依赖本地jar
可以手动添加jar,但是idea手动添加jar时,有时候不行。 用maven依赖本地jar方法,感觉比较正规,不会因为自己忘记手动添加jar。 比如这个达梦数据库依赖 <dependency> <groupId>com.dm</groupId>...
idea
maven
2019-07-15
0
800
Linux的docker安装solr并创建core
查看solr列表 docker search solr 拉取solr镜像【注:这里默认latest】,由于之前下载过 docker pull solr 启动一个做了端口映射的solr【-d:后台运行,-p: 将主机的端口映射到容器的一个端口 主机端口:容器内...
docker
solr
2019-07-09
0
828
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页