Springboot概念和小实战(1)

Springboot学习笔记(1)

这一次正式进入Springboot的学习,学完ssm框架后学习Springboot框架开发,会有很深刻的认识。接下来就进入下面的内容。

文章目录

  • Springboot学习笔记(1)
    • 1、springboot基本了解
      • 1.1 springboot基本概念
      • 1.2 springboot特点
    • 2、入门案例
      • 2.1 补充:创建项目模块
      • 2.2 创建Maven项目(粗略)
      • 2.3 启动类
      • 2.4 编写controller
      • 2.5 编译运行
    • 总结

1、springboot基本了解

1.1 springboot基本概念

springboot的概念:是spring快速开发的脚手架,通过约定大于配置这一方式,快速构建和启动spring项目。

当然,存在即有意义。spring的开发具有一定的缺陷如下:

  • 复杂的配置:项目各种配置是开发时的损耗,写配置挤占了写应用程序逻辑的时间。
  • 混乱的依赖管理:项目的依赖管理非常的繁琐。在我们进行选择库的时候就已经很头疼了,再考虑版本兼容的问题就更加雪上加霜。并且无论是手动添加还是调用本地仓库而言,如果选错了依赖,那么随之而来的就是很多不兼容的bug。

所以,通过使用springboot能够简单的完成以上两个问题。

1.2 springboot特点

springboot特点:

  • 快速开发spring的应用框架
  • 内嵌tomcat和jetty容器,不需要单独安装容器
  • 简化maven配置,parent这种方式,一站式引入需要的各种依赖
  • 基于注解的的零配置
  • 可以跟各种流行框架如springmvc、mybatis、spring cloud整合

2、入门案例

在入门的小介绍中,我们的目标在于能够创建一个HelloController,并且在页面中打印出Hello spring boot。

2.1 补充:创建项目模块

Springboot概念和小实战(1)_第1张图片

这里展示的是一个空文件夹下创建两个模块。

Springboot概念和小实战(1)_第2张图片

这里创建一个空文件项目后,在新建窗口点击如下图所示

Springboot概念和小实战(1)_第3张图片

这里就正常创建项目即可。这样就可以实现项目的日常管理。

2.2 创建Maven项目(粗略)

这里在进行导入时会等待一段时间,因为springboot包下有很多的jar包,等待刷新即可。


<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0modelVersion>
	<groupId>com.lxs.demogroupId>
	<artifactId>springboot-demoartifactId>
	<version>1.0-SNAPSHOTversion>
	<properties>
		<java.version>1.8java.version>
	properties>
	<parent>
		<groupId>org.springframework.bootgroupId>
		<artifactId>spring-boot-starter-parentartifactId>
		<version>2.0.0.RELEASEversion>
	parent>
	<dependencies>
		<dependency>
			<groupId>org.springframework.bootgroupId>
			<artifactId>spring-boot-starter-webartifactId>
		dependency>
	dependencies>
project>

Springboot概念和小实战(1)_第4张图片

上图就是主要用maven下载的包。

2.3 启动类

@SpringBootApplication
public class Application {
	public static void main(String[] args) {
		SpringApplication.run(Application.class, args);
	}
}

2.4 编写controller

@RestController
public class HelloController {
	@GetMapping("/hello")
	public String hello(){
		return "hello, spring boot!";
	}
}

2.5 编译运行

Springboot概念和小实战(1)_第5张图片

通过以上三个点,展示编译运行完毕,调入到

http://localhost:8080/hello

Springboot概念和小实战(1)_第6张图片
运行完成!

总结

以上是个人的动手实践的部分,后续会展示更多的学习来为大家阅读学习。谢谢大家

你可能感兴趣的:(#,springboot,spring,boot,spring,java)