会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
WOROC
博客园
首页
新随笔
联系
订阅
管理
2021年9月
面试题 : 两个字符串数组合并,去掉重复的然后再排序
摘要: 利用TreeSet 不允许元素重复特性 public class Test{ private static String[] distinctAndSort(String[] arr1,String[] arr2) { TreeSet<String> set = new TreeSet<>(); f
阅读全文
posted @ 2021-09-02 21:12 WOROC
阅读(220)
评论(0)
推荐(0)
2021年8月
The Tomcat connector configured to listen on port 8080 failed to start.
摘要: 今天启动时报错,大概是说8080端口被占用。。 1.查端口和占用进程的PID 2.杀掉该进程 3.Ok!
阅读全文
posted @ 2021-08-12 11:04 WOROC
阅读(204)
评论(0)
推荐(0)
02-第一个 Spring Boot 的 Web 应用(Spring MVC+Thymeleaf )
摘要: 1.创建一个新的 Maven 项目,命名为 logintest 按照 Maven 项目的规范,在 src/main/下新建一个名为 resources 的文件夹,并在 src/main/resources 下再新建 static 和 templates 两个文件夹。 2.修改pom.xml文件。 <
阅读全文
posted @ 2021-08-04 23:31 WOROC
阅读(50)
评论(0)
推荐(0)
2021年7月
01-开发第一个SpringBoot应用
摘要: 开发环境:win10专业版20H2+JDK8+Eclipse4.10.0 一、下载安装Maven 1.进入官网:https://maven.apache.org/download.cgi,下载maven最新版本apache-maven-3.8.1-bin.zip(目前是3.8.1)。 2.解压,配置
阅读全文
posted @ 2021-07-31 23:08 WOROC
阅读(44)
评论(0)
推荐(0)
公告