上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: //1. 创建请求对象 var xhr=new XMLHttpRequest(); //2. 注册状态监听 xhr.onreadystatechange=function(){ if(xhr.readyState==4&&xhr.status==200){ console.log(xhr.respo 阅读全文
posted @ 2020-08-19 10:59 岁月染过的梦 阅读(104) 评论(0) 推荐(0)
摘要: ![](https://img2020.cnblogs.com/blog/2030825/202008/2030825-20200818103516951-1457398635.png)![](https://img2020.cnblogs.com/blog/2030825/202008/2030825-20200818103752602-1849166748.png) 阅读全文
posted @ 2020-08-18 10:38 岁月染过的梦 阅读(136) 评论(0) 推荐(0)
摘要: //1. 创建请求对象 var xhr=new XMLHttpRequest(); //2. 注册状态监听 xhr.onreadystatechange=function(){ if(xhr.readyState==4&&xhr.status==200){ console.log(xhr.respo 阅读全文
posted @ 2020-08-18 10:31 岁月染过的梦 阅读(55) 评论(0) 推荐(0)
摘要: 热部署: 当类的内容被修改时 保存会自动重启服务器 引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</ 阅读全文
posted @ 2020-08-17 18:18 岁月染过的梦 阅读(115) 评论(0) 推荐(0)
摘要: 引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> 测试 http://localhost: 阅读全文
posted @ 2020-08-17 18:09 岁月染过的梦 阅读(746) 评论(0) 推荐(0)
摘要: ![](https://img2020.cnblogs.com/blog/2030825/202008/2030825-20200817171701930-1411251870.png) 阅读全文
posted @ 2020-08-17 18:02 岁月染过的梦 阅读(119) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-08-17 17:39 岁月染过的梦 阅读(254) 评论(0) 推荐(0)
摘要: java Script 学习框架 阅读全文
posted @ 2020-08-16 13:51 岁月染过的梦 阅读(183) 评论(0) 推荐(0)
摘要: spring.application.name=Activity-01 # sql spring.datasource.url=jdbc:mysql://172.17.0.2:3306/dbactivity?serverTimezone=GMT%2B8&characterEncoding=utf8 阅读全文
posted @ 2020-08-15 22:16 岁月染过的梦 阅读(168) 评论(0) 推荐(0)
摘要: Lombok插件应用 Lombok是一个第三库,可以基于lombok中提供的API,在程序编译时自动织入一些方法。这样做的话可以简化我们对某些方法的编写,例如,省略pojo类中的set方法,get方法,toString等方法的编写。我们写的java程序可以在编译时,通过lombok自动将这些方法添加 阅读全文
posted @ 2020-08-15 19:09 岁月染过的梦 阅读(4323) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页