- 博客(6)
- 收藏
- 关注
原创 集合
集合Java集合框架:基础知识,Collection,Map基础知识:数据物理结构[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-5WXn3jYX-1614087087207)(C:\Users\fallrain\AppData\Roaming\Typora\typora-user-images\image-20210223201004900.png)]数据逻辑结构[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-L8mIwmqc-161
2021-02-23 21:32:03 109 2
原创 SpringBoot学习(二)thymeleaf写个前端页面展示数据
SpringBoot学习(二)thymeleaf写个前端页面展示数据导入依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>我们从ThymeleafProperties类可以知道它会从templates文件夹下
2021-02-05 01:11:25 802 1
原创 SpringBoot 学习(一)源码还没撕,先试试怎么用
SpringBoot 学习(一)源码还没撕,先试试怎么用关于怎么搭建项目,写个HelloWorld出来,就不多说了SpringBoot 整合Mybatispom.xml 导入依赖<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <vers
2021-02-02 22:39:35 118
原创 python读取文件夹下所有文件,并返回绝对路径
python读取文件夹下所有文件,并返回绝对路径根据需要,返回的是绝对路径import osdef multifilesRead(path, filesAbsolutePath): file_list = os.listdir(path); for file in file_list: cur_path = os.path.join(path, file) if os.path.isdir(cur_path): multifil
2021-01-23 20:41:17 667
原创 ssm使用纯注解方式的批量删除
@Delete({"<script>", "delete from tbl_emp where emp_id in", "<foreach collection='list' item='id' open='(' close=')' separator=','>", "#{id}", "</foreac...
2020-04-15 23:14:00 510 1
原创 wordNet停用词
from nltk.corpus import stopwordsimport nltknltk.download("stopwords")def stop_words(): sw = stopwords.words("english") return swdef sentence_test(): sentence = "Text Summarizati...
2020-01-07 09:59:26 288
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人