SpringBoot是由Pivotal团队在2013年开始研发、2014年4月发布第一个版本的全新开源的轻量级框架。它基于Spring4.0设计,不仅继承了Spring框架原有的优秀特性,而且还通过简化配置来进一步简化了Spring应用的整个搭建和开发过程。另外SpringBoot通过集成大量的框架使得依赖包的版本冲突,以及引用的不稳定性等问题得到了很好的解决。
微服务源于 martin fowler的一篇博客
博客原文??https://martinfowler.com/articles/microservices.html
博客译文??https://blog.csdn.net/u013970991/article/details/53333921
把一个应用打成war包放在tomcat里面,这样便于开发、测试、发布和负载均衡。但是一个应用有太多功能,太过复杂,修改维护起来不方便。
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\>
可以直接从??https://start.spring.io/来搭建基础环境,dependencies只选择spring web即可
解决办法
配置阿里源
配置好后在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>
最终导入的包??(卧槽!有点点小震惊,好多包啊??)
For further reference, please consider the following sections:
The following guides illustrate how to use some features concretely:
.
├── 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
运行Springboot01Application.java,访问localhost:8080
在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/??
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在线生成工具编写
原文:https://www.cnblogs.com/sogeisetsu/p/12961999.html