首页 > 编程语言 > 详细

springboot笔记

时间:2020-05-26 01:11:42      阅读:115      评论:0      收藏:0      [点我收藏+]

1 springboot简介

1.1 简介

SpringBoot是由Pivotal团队在2013年开始研发、2014年4月发布第一个版本的全新开源的轻量级框架。它基于Spring4.0设计,不仅继承了Spring框架原有的优秀特性,而且还通过简化配置来进一步简化了Spring应用的整个搭建和开发过程。另外SpringBoot通过集成大量的框架使得依赖包的版本冲突,以及引用的不稳定性等问题得到了很好的解决。

1.2 优点

技术分享图片

1.3 微服务

微服务源于 martin fowler的一篇博客

技术分享图片

博客原文??https://martinfowler.com/articles/microservices.html

博客译文??https://blog.csdn.net/u013970991/article/details/53333921

1.4 在有微服务之前,我们是怎么做的?

技术分享图片

把一个应用打成war包放在tomcat里面,这样便于开发、测试、发布和负载均衡。但是一个应用有太多功能,太过复杂,修改维护起来不方便。

1.5 微服务和单体应用的对比

技术分享图片

2 Hello world

2.1 环境搭建

C:\Users\>mvn -v
Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T15:58:13                                                                 +08:00)
Maven home: D:\javamaven\apache-maven-3.5.2\bin\..
Java version: 1.8.0_231, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.8.0_231\jre
Default locale: zh_CN, platform encoding: GBK
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"

C:\Users\>java -version
java version "1.8.0_231"
Java(TM) SE Runtime Environment (build 1.8.0_231-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.231-b11, mixed mode)

C:\Users\>
  • jdk 1.8.0_231
  • Maven 3.5.2
  • idea IntelliJ IDEA 2019.2.4 x64
  • springboot 2.3.0

可以直接从??https://start.spring.io/来搭建基础环境,dependencies只选择spring web即可

技术分享图片

注意:从官网搭建的基础环境会出现maven被墙的可能

解决办法

配置阿里源

配置阿里源方法

配置好后在pom.xml配置如下??,以使用阿里源

<repositories>
    <repository>
        <id>alimaven</id>
        <name>aliyun maven</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

最终导入的包??(卧槽!有点点小震惊,好多包啊??)

技术分享图片

2.2 springBoot官方帮助文件??

Getting Started

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

2.3 搭建好的环境的文件结构

.
├── HELP.md
├── mvnw
├── mvnw.cmd
├── pom.xml
├── springboot-01.iml
├── springboot.iml
└── src
    ├── main
    │?? ├── java
    │?? │?? └── org
    │?? │??     └── suyuesheng
    │?? │??         └── springboot
    │?? │??             └── Springboot01Application.java
    │?? └── resources
    │??     ├── application.properties
    │??     ├── static
    │??     └── templates
    └── test
        └── java
            └── org
                └── suyuesheng
                    └── springboot
                        └── Springboot01ApplicationTests.java

2.4 运行

运行Springboot01Application.java,访问localhost:8080

2.4.1 controller

在Springboot01Application.java的同级目录下,创建包controller,编写controller??

package org.suyuesheng.springboot.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TryController {

    @RequestMapping("/hello")
    public String one(){
        return "hello,你好";
    }
}

访问http://localhost:8080/hello??

技术分享图片

访问http://localhost:8080/??

技术分享图片

2.5 总结和彩蛋

springboot直接自动配置了tomcat,只需运行最后生成的jar包就可以达到配置tomcat的效果。

原因是pom.xml里面配置了spring-boot-starter-web,下面是官网对其的解释??

Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container

每次运行springboot时候,控制台会有spring的字符出现,这个是可以修改的,只需在resources下面写一个banner.txt,控制台中原本是spring的字样就变成了banner.txt配置的字样??

技术分享图片

这种字符艺术字的效果可以到??ASCII文字,SpringBoot自定义启动Banner在线生成工具编写

springboot笔记

原文:https://www.cnblogs.com/sogeisetsu/p/12961999.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!