大二實習生的暑假實習總結

7.19遇到的問題

1.JSONObject =》javabean
2.JSONObject.toJSONString() "$ref": "$[19]"  ????
3.@ResquestBody 的使用
4.hibernate 一對多的查詢
5.JPA  批量增長 https://www.cnblogs.com/IcanFixIt/p/7042977.html
6.JPA  delete碰見的問題 https://www.2cto.com/kf/201611/569207.html
7.Spring 異常拋出,和異常處理
8.@Column的適用 https://blog.csdn.net/name_z/article/details/51318271


7.20
1.後臺文件上傳接口
2.大圖片的瀑布流渲染方式:先加載模糊的小照片圖片,經過預加載讓原圖實現覆蓋
<div style="width:400px;height:300px;">
    <!--小圖拉大顯示-->
    <img src="small_url" style="width:100%;height:100%;"/>
    <!--原圖疊加在小圖上面-->
    <img src="big_url" style="width:100%;height:100%;position:absolute;top:0px;left:0px;"/>
</div>

img lowsrc="" width="300" height="200" border="0" id="image_operate_13311415863667283"
把圖片的縮略圖 放在lowsrc裏面,這樣的話由於縮略圖是縮小的,按照原圖片的比例顯示就會有馬賽克!
src裏填寫 原圖片!
http://blog.sina.com.cn/s/blog_4116c60f0102v6oc.html

3.@GetMapping、@PostMapping、@RequestMapping http://www.iteye.com/news/32657 詳細
4.@SuppressWarnings


7.20 遇到的問題
1.transferTo() Spring 內置文件transferTo函數,請求中文件關聯至項目本地
2.@ControllerAdvice 註解
3.org.springframework.web.multipart.commons.CommonsMultipartResolver
4.https://github.com/xuwujing/springBoot-study/blob/master/springboot-config/src/main/java/com/pancm/config/IpConfig.java
5.@SuppressWarnings
6.Spring的異常處理

7.21:
1.Spring 處理上傳文件的問題  https://blog.csdn.net/u013380777/article/details/58603803


7.22
1.hibernate-maven cirteria標準查詢、原生Sql查詢
2.projection 投影,相似於sql文件的視圖
3.驗證重複提交

7.23
1.echart.js 前端可視化框架的學習。javascript

2.百度地圖的javascript文檔的學習。
2.hibernate的1對N關聯、N對1關聯

7.27
1.hibernate 延遲加載
2.動態代理    https://www.cnblogs.com/lcplcpjava/p/6759859.html  https://blog.csdn.net/xc635960736/article/details/7049863
3.hibernate主鍵生成策略
4,Entitymanager :目前較爲主流持久層管理工具,須要對持久層上下文進行了解
5.級聯、inverse  https://www.cnblogs.com/whgk/p/6135591.html

7.28
1.一級緩存和三種狀態解析 http://www.cnblogs.com/whgk/p/6103038.html
2.JXL、POI使用,後端操做Excel文件的接口

7.29
1.EJB詳解 https://blog.csdn.net/u011687186/article/details/52056242
2.EntityManager詳解   http://www.blogjava.net/jesson2005/articles/380880.html
3.JNDI  https://www.cnblogs.com/zhchoutai/p/7389089.html
4.百度地圖API(第一天)


7.30
1.前端預覽PDF.js  https://www.cnblogs.com/iPing9/p/7153713.html

7.31
1.百度地圖.......大體看完
2.freemaker
3.ValidatorFactory  hibernate的驗證措施html

.hibernate驗證類 validator ConstraintValidator的使用前端

@NOTNULL...
4.ObjectMapper  JSONObject=>Java Bean 轉換

8.2
1.牛客 java子父類繼承靜態代碼塊與非靜態代碼塊執行順序、基本數據類型默認
2.形式參數
3.靜態變量


8.4
1.移位運算 https://blog.csdn.net/dawn_after_dark/article/details/75174936
2.內部類
3.transient 關鍵字的使用 https://blog.csdn.net/u013207877/article/details/52572975


8.5
1.ThreaLocal 類的使用
https://www.cnblogs.com/dolphin0520/p/3920407.html
http://www.iteye.com/topic/103804
一句話總結:
ThreadLocal類不是用來解決多線程訪問同一內存空間的方法,而是使用ThreadLocalMap實現線程之間的隔離
一個線程只管理本身管理範圍下的對象,與其餘線程無關


2.字符串常量池
https://www.cnblogs.com/tongkey/p/8587060.html
== 若是是引用的== 比較的是引用所指向的對象在堆裏或者字符串常量池裏的地址
  若是是基本數據類型比較的是值得
3.TimSort()排序算法
4.Collection複習List、Set ArrayList

8.6
1.TonFun公司的Tool源碼
2.fail-fast案例分析
3.內部類總結
  1.成員內部類
  2.靜態成員內部類
  3.局部內部類
  4.局部匿名內部類
4.ListIterator 的使用


8.7
1.TonFun公司的dao代碼,分頁的標準查詢的實現
2.vector、stack的源代碼
3.RequestContextHolder :持有上下文的Request容器 https://blog.csdn.net/zzy7075/article/details/53559902


問題:鎖???

8.8
1.Final關鍵字的數制默認轉換限制
  byte、char、short默認轉換到int....
2.GetClass->Date()
3.list方法的remove方法須要注意的問題
4.補碼、原碼、反碼計算


8.13
1.java Pattern類、正則
2.反射-》繼承、代碼執行順序:java

子類覆蓋父類的方法,執行子類構造器時,默認執行子類的方法,若是想執行父類的方法必須使用super.引用webpack

3.類加載   https://blog.csdn.net/liang_70121385/article/details/52496028

主動引用 被動引用

8.14
enum http://www.cnblogs.com/hemingwang0902/archive/2011/12/29/2306263.html#title-6

8.15
1.JVM內存模型 https://blog.csdn.net/u010425776/article/details/51170118
2.native method https://www.cnblogs.com/chen-jack/p/7904510.html
本地方法
3.對象的建立過程

8.16
1.webpack
  1.webpack-dev-server --config webpack.config.js --watch  --watch開啓監聽模式,實時更新git

1. 暑假實習期間在牛客上邊的刷的題所有上傳到了github上邊,歡迎大佬來指教,後期會定時更新
https://github.com/perveil/JavaTestgithub

2.實習前一週和前端合做的一個hibernate小demoweb

https://github.com/perveil/Springboot-jpa-hibernateDemo算法

相關文章
相關標籤/搜索