java
vitality_data
这个作者很懒,什么都没留下…
展开
-
Java之Map集合遍历数据的4种方式
Map<String, String> map = new HashMap<String, String>();map.put("key1", "value1");map.put("key2", "value2");System.out.println("=====增强for循环遍历 使用keySet()遍历=====");for (String key : map.keySet()) { System.out.println(key + " :" + map.ge原创 2020-08-06 14:30:18 · 417 阅读 · 0 评论 -
Eclipse启动运行项目Debug弹窗:This kind of launch is configured to openthe debug perspective when it解决办法
问题:Eclipse启动运行项目Debug弹窗?弹窗内容如图所示。The kind of launch is configured to open the Debug perspective when it suspends.THis Debug perspective is designed to support application debugging.it incorporates views for displaying the debug stack, variables and bre原创 2020-07-14 11:42:31 · 2678 阅读 · 2 评论 -
Spring boot三大特性
1. 组件自动装配:Web MVC、Web Flux、JDBC等 。激活:@EnableAutoConfiguration配置:/META-INF/spring.factories实现:XXXAutoConfiguration2. 嵌入式Web容器:TomCat、Jetty以及UndertowWeb Servlet: Tomcat、Jetty和UndertowWeb Reactive: Netty Web Server3. 生产准备指标:指标、健康检查、外部化配置等指标:/actu原创 2020-06-17 16:05:23 · 995 阅读 · 0 评论 -
Spring Boot 项目打包
构建JAR包构建WAR包指定Main-Class原创 2020-06-17 15:38:36 · 144 阅读 · 0 评论 -
Spring boot运行模式
IDEA方式:在开发环境中进行调试进行开发。JAR/WAR方式:在生产环境中常用的启用脚本或者启用命令。E:\project\spring_boot_app>mvn -Dmaven.test.skip -U clean packageE:\project\spring_boot_app\target>java -jar spring_boot_app-0.0.1-SNAPSHOT.jarMaven插件方式: 在两者之间,当没有图形化界面同时又在开发环境的时候或者在线上环境安装了.原创 2020-06-17 15:35:30 · 195 阅读 · 0 评论 -
Spring 的注册与注入
之前和同学老是爱混淆注册与注入。今天再看一遍感觉多了一些理解。注册就是声明bean。就是让spring能够找到这个bean服务。注入就是把bean(A)加入到另一个bean(B)的属性中。让另外一个beanB服务能够使用被注入的beanA的功能。...转载 2020-06-17 11:45:16 · 332 阅读 · 0 评论 -
Java之List集合遍历数组的4中方式
//定义String数组String data[] = {"jack","tom","peter","linda"};//转换成List集合List<String> stringList = Arrays.asList(data);System.out.println("=====Java8 forEach遍历=====");stringList.forEach(s -> { System.out.println(s);});System.out.printl..原创 2020-05-29 10:44:49 · 666 阅读 · 0 评论 -
ReactJS请求js数组数据,Java后台接收转换List
前端页面请求的数组数据:![在这里插入图片描述](https://img-blog.csdnimg.cn/20200525155815817.pnJava后台接收转化为List类型数据:原创 2020-05-25 16:06:51 · 813 阅读 · 0 评论 -
时间类型:数据库类型与JAVA中类型的对应关系
Date–>java.sql.DateTime–>java.sql.TimeTIMESTAMP–>java.sql.Timestamp领域对象(domain)中的所有属性不能出现java.sql包下的东西!即不能使用java.sql.DateResultSet#getDate()返回的是java.sql.Date()PreparedStatement#setDate(...原创 2020-02-07 23:24:27 · 4585 阅读 · 0 评论