001 初步认识Springboot

实时更新路径:http://note.youdao.com/noteshare?id=20e0e46abbcf53e73d7f192cd455c953

 

一、快速创建独立的,生产级的Spring项目,并且配置很少。

二、特点:(反正就是多方支持,兼容好,上手快各种优势)

1、创建独立的Spring应用程序

2、直接嵌入Tomcat,Jetty或Undertow(无需部署WAR文件)

3、提供自以为是的“入门”依赖项,以简化构建配置

4、尽可能自动配置Spring和3rd Party库

5、提供生产就绪的功能,例如指标,运行状况检查和外部配置

6、完全没有代码生成,也不需要XML配置

 

三、快速搭建demo系统

1、第一个Springboot应用程序:https://start.spring.io/ (可能回报:Empty test suite 异常,maven install -X,就能解决)

2、整合web开发 (整合 Thymeleaf 参考:https://blog.csdn.net/XiaoA82/article/details/88052450

3、整合的源码已上传到 github:https://github.com/iFreemen/demo

 

四、web开发基础系统(基于官方下载的springboot的开发)

1、提前安装好JDK1.8 和 IDEA环境

2、引入Springboot后,启动test和application是否正常

3、整合web、Thymeleaf、lombok,实现基本的页面展示

		<!-- 以下依赖添加 -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
		</dependency>

		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
			<version>1.16.20</version>
		</dependency>

        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.31</version>
        </dependency>

		<!-- 通用Mapper -->
		<dependency>
			<groupId>tk.mybatis</groupId>
			<artifactId>mapper-spring-boot-starter</artifactId>
			<version>2.0.2</version>
		</dependency>

		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
		</dependency>

		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>druid</artifactId>
			<version>1.0.29</version>
		</dependency>

		<!-- 整合redis -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-redis</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-autoconfigure</artifactId>
			<version>2.2.1.RELEASE</version>
		</dependency>

		<!-- 整合MongoDB -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-mongodb</artifactId>
		</dependency>

		<!-- 整合 POI 操作office文件 excel-->
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>3.16</version>
		</dependency>

		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
		</dependency>

 

2、目前的项目结构

 

 

3、创建controller、entity模块。

注意注解:@Controller @GetMapping @Data @RequestParam String name

4、Application扫描包

@SpringBootApplication @ComponentScan(basePackages = {"com.example.demo"})

5、创建templates模块、Thymeleaf的默认路径就是templates下的html文件。文件名要和return中的名字保持一致,否则会报错

6、页面和后端的参数传递,详情查看源代码及注解

 

五、系列学习 Thymeleaf的各种类型的传递和显示

1、基础参数:http://note.youdao.com/noteshare?id=4f75162899939a27ea28f70814c665e1 实现字符串、对象在页面的展示和List的循环、在js中的显示[[${user.name}]],a 标签跳转

2、表单提交字符串、图片:http://note.youdao.com/noteshare?id=37a9750c8dae79a560f322e361bfe1bd

3、ajax提交简单数据:http://note.youdao.com/noteshare?id=9488f0107dcb6f2f47054d52e39718bd

目前就是这些简单的运用:如有需要在补充。。。。。。。(想要什么功能可以联系我补充:903944126@qq.com,QQ不上了不要加好友)

 

六、 整合JPA、Mybatis、redis、mongo

1、整合JPA:https://github.com/iFreemen/springBoot_Jpa

2、整合Mybatis:

i、用Mybatis少不了逆向工程:https://github.com/iFreemen/mybatis_generator

ii、整合Mybatis: Mybatis官方:https://mybatis.org/mybatis-3/zh/getting-started.html

在整合过程中因为用的通过Mapper依赖搞错了浪费了不少时间,留意 @MapperScan 是 tk,指定主键 @id ,返回包含主键的对象 @GeneratedValue(strategy = GenerationType.IDENTITY) 等等

<!-- 通用Mapper --> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifactId> <version>2.0.2</version> </dependency>

详情查看代码:https://github.com/iFreemen/demo

 

iii、整合Druid: 参考外部博客:https://www.jianshu.com/p/fd2c8113f79d 源码: https://github.com/iFreemen/demo

多数据源:

 

iiii、整合redis:首先要先准备好redis环境:http://note.youdao.com/noteshare?id=96878ddd8ea0fded0882f90a85072f3f

工具参考:https://www.cnblogs.com/zeng1994/p/03303c805731afc9aa9c60dbbd32a323.html

源码: https://github.com/iFreemen/demo

 

3、整合 MongoDB:首先准备好MongoDB环境:http://note.youdao.com/noteshare?id=3ae56b5dd2d8b26101e549f33f6abb9e

注意 _id 的类型是ObjectId,另外:不用建表,mongo会自动根据写入的对象class,创建一个对应的表

源码: https://github.com/iFreemen/demo

 

七、整合 Excel 实现读写操作,导入导出;各种文件操作:txt、XML

Excel读取会遇到很多问题的:例如整型会变成带小数点的,读取单元时循环内要使用表单头,对不用的类型要分来处理

源码:https://github.com/iFreemen/demo

读取并下载参考:https://www.cnblogs.com/myseries/p/10845425.html

 

 

八、邮件、附件Excel

八、队列实现

九、EA

十、Dubbo+Zookepper

十一、Docker

十二、springcloud

十三、发布

十四、Jenkins

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值