-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
李济芝
committed
Dec 7, 2023
1 parent
894baca
commit f739307
Showing
11 changed files
with
10 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -610,14 +610,5 @@ | |
<description>安装elasticsearch 要注意导入依赖的版本和安装elasticsearch的版本与springboot的兼容问题 用 docker 安装 elasticsearch 本例用elasticsearch-6.5.3和springboot-2.1.0.RELEASE版本 下载镜像: docker</description> | ||
</item> | ||
|
||
<item> | ||
<title>我的简历_优化</title> | ||
<link>https://whiteppure.github.io/iblog/posts/resume/interview-resume-optimize/</link> | ||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> | ||
|
||
<guid>https://whiteppure.github.io/iblog/posts/resume/interview-resume-optimize/</guid> | ||
<description>自我介绍 1998 · 李济芝 河北唐山 15176733539 &nbsp;[email protected] 本人有严谨的工作态度与高质量意识;能查阅各种开发技术手册,具有独立解决问题的能力。具备扎实的Java基础和四年开发经验,有良好的编程风格,独立熟练使用Spring全家桶等常用类库开发Java服务端程序、对Jav</description> | ||
</item> | ||
|
||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -324,39 +324,6 @@ <h2><a href='/iblog/posts/spring/springboot-elasticsearch/'>SpringBoot整合elas | |
</div> | ||
</div> | ||
|
||
<div class="post animated fadeInDown"> | ||
<div class="post_title"> | ||
<h2><a href='/iblog/posts/resume/interview-resume-optimize/'>我的简历_优化</a></h2> | ||
</div> | ||
|
||
<div class="list"> | ||
<div class="post_content markdown"> | ||
<p>自我介绍 1998 · 李济芝 河北唐山 15176733539 [email protected] 本人有严谨的工作态度与高质量意识;能查阅各种开发技术手册,具有独立解决问题的能力。具备扎实的Java基础和四年开发经验,有良好的编程风格,独立熟练使用Spring全家桶等常用类库开发Java服务端程序、对Jav......</p> | ||
</div> | ||
</div> | ||
|
||
<div class="post_footer"> | ||
<div class="meta"> | ||
<div class="info"> | ||
<span class="field"> | ||
<i class="ri-map-pin-time-line"></i> | ||
<span class="date">0001.01.01</span> | ||
</span> | ||
|
||
<span class="field tags"> | ||
<i class="ri-stack-line"></i> | ||
|
||
<a href="https://whiteppure.github.io/iblog/tags/java/">Java</a> | ||
|
||
<a href="https://whiteppure.github.io/iblog/tags/%E6%B1%82%E8%81%8C/">求职</a> | ||
|
||
</span> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="pagination"> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -601,14 +601,5 @@ | |
<description>安装elasticsearch 要注意导入依赖的版本和安装elasticsearch的版本与springboot的兼容问题 用 docker 安装 elasticsearch 本例用elasticsearch-6.5.3和springboot-2.1.0.RELEASE版本 下载镜像: docker</description> | ||
</item> | ||
|
||
<item> | ||
<title>我的简历_优化</title> | ||
<link>https://whiteppure.github.io/iblog/posts/resume/interview-resume-optimize/</link> | ||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> | ||
|
||
<guid>https://whiteppure.github.io/iblog/posts/resume/interview-resume-optimize/</guid> | ||
<description>自我介绍 1998 · 李济芝 河北唐山 15176733539 &nbsp;[email protected] 本人有严谨的工作态度与高质量意识;能查阅各种开发技术手册,具有独立解决问题的能力。具备扎实的Java基础和四年开发经验,有良好的编程风格,独立熟练使用Spring全家桶等常用类库开发Java服务端程序、对Jav</description> | ||
</item> | ||
|
||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -340,14 +340,5 @@ | |
<description>ArrayList ArrayList线程不安全示例: public static void main(String[] args) { ArrayList&lt;String&gt; arrayList = new ArrayList&lt;&gt;(); for(int i=0; i&lt; 3; i++) { new Thread(() -&gt; { arrayList.add(UUID.randomUUID().toString()); System.out.println(arrayList); },String.valueOf(i)).start(); } } // ConcurrentModificationException 同步修改异常 Exception in thread &#34;8&#34; java.util.ConcurrentModificationException [null, 2041b613-8068-4ddd-9d01-305f5680d377] [null, 2041b613-8068-4ddd-9d01-305f5680d377, b3e0296d-e263-4632-a023-4267cdec5e25] [null, 2041b613-8068-4ddd-9d01-305f5680d377] 原因分析: 当某个线程正在执行 add()方法时,被某个线程打断,添加到一半被打断,没有被添加完 解决方案: 使用Vec</description> | ||
</item> | ||
|
||
<item> | ||
<title>我的简历_优化</title> | ||
<link>https://whiteppure.github.io/iblog/posts/resume/interview-resume-optimize/</link> | ||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> | ||
|
||
<guid>https://whiteppure.github.io/iblog/posts/resume/interview-resume-optimize/</guid> | ||
<description>自我介绍 1998 · 李济芝 河北唐山 15176733539 &nbsp;[email protected] 本人有严谨的工作态度与高质量意识;能查阅各种开发技术手册,具有独立解决问题的能力。具备扎实的Java基础和四年开发经验,有良好的编程风格,独立熟练使用Spring全家桶等常用类库开发Java服务端程序、对Jav</description> | ||
</item> | ||
|
||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,14 +25,5 @@ | |
<description>面试常见问题 自我介绍 个人经历可以进行适当包装,但是不能造假,一方面如果一旦被人拆穿,后果就不用我说了吧,另一方面如果你说谎,说了一些你自己不感兴趣的项目,在入职之后可能会被分配到该项目上; 在介绍的时候要说明你对面试的公司有什么用,根据不同类</description> | ||
</item> | ||
|
||
<item> | ||
<title>我的简历_优化</title> | ||
<link>https://whiteppure.github.io/iblog/posts/resume/interview-resume-optimize/</link> | ||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> | ||
|
||
<guid>https://whiteppure.github.io/iblog/posts/resume/interview-resume-optimize/</guid> | ||
<description>自我介绍 1998 · 李济芝 河北唐山 15176733539 &nbsp;[email protected] 本人有严谨的工作态度与高质量意识;能查阅各种开发技术手册,具有独立解决问题的能力。具备扎实的Java基础和四年开发经验,有良好的编程风格,独立熟练使用Spring全家桶等常用类库开发Java服务端程序、对Jav</description> | ||
</item> | ||
|
||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters