search
HomeJavajavaTutorialHow to solve the problems of SpringBoot official website construction and quick startup

    SpringBoot Overview

    SpringBoot is a brand new framework provided by the Pivotal team and is designed to be used with To simplify the initial construction and development process of Spring applications.

    Everyone has experienced the SpringBoot program. Let’s look back and see what the main function of SpringBoot is to simplify the construction and development process of Spring .

    OriginalSpring There are the following problems in environment construction and development:

    • Cumbersome configuration dependencies

    • Settings Cumbersome

    SpringBoot The advantage of the program happens to be automatic configuration for the shortcomings of Spring

    • . This is used to solve the problem of cumbersome program configuration in Spring

    • ##starting dependencies. This is used to solve

      Spring the problem of cumbersome program dependency settings

    • auxiliary functions (built-in server,...). When we started the

      SpringBoot program, we neither used the local tomcat nor the tomcat plug-in, but used the SpringBoot built-in server.

    Next let’s talk about the starting dependencies of

    SpringBoot

    Starting dependencies

    We use

    Spring Initializr The pom.xml configuration file of the Maven project created in the method automatically generates many dependencies containing starter, as shown below

    How to solve the problems of SpringBoot official website construction and quick startup

    These dependencies are startup dependencies. Next, let’s explore how they are implemented.

    Exploring the parent project

    From the above file, we can see that a parent project is specified. We enter the parent project and find that another parent project is specified in the parent project, as shown in the figure below

    How to solve the problems of SpringBoot official website construction and quick startup

    Then enter the parent project. In this project, we can see the configuration content structure as shown below

    How to solve the problems of SpringBoot official website construction and quick startup

    The properties tag in the above picture defines the versions that each technical software depends on, which avoids us considering version compatibility issues when using different software technologies. In properties we find the versions of servlet and mysql as shown below

    How to solve the problems of SpringBoot official website construction and quick startup

    dependencyManagement# The ## tag is for dependency version locking, but the corresponding dependency is not imported; if our project needs that dependency, we only need to introduce the groupid and artifactId of the dependency. There is no need to define the version .

    The

    build tag also locks the plug-in version, as shown below

    How to solve the problems of SpringBoot official website construction and quick startup

    After reading the parent project

    After configuring pom.xml, it is not difficult to understand why none of our project’s dependencies are configured version.

    Exploring dependencies
    The following dependencies are configured in

    pom.xml in the project we created

    How to solve the problems of SpringBoot official website construction and quick startup

    Enter the dependency and check the dependencies of

    pom.xml and you will find that it introduces the following dependencies

    How to solve the problems of SpringBoot official website construction and quick startup

    which introduces

    spring-web and spring-webmvc are dependent on each other. This is why our project can still use the annotations in springMVC without relying on these two packages.

    and relies on

    spring-boot-starter-tomcat. From the name, we can basically confirm that tomcat is internally dependent, so our project can start normally.

    Conclusion: If you need to use technology in the future, you only need to introduce the starting dependencies corresponding to the technology

    Summary

    starter

    • Common project names in SpringBoot define all project coordinates used by the current project to reduce dependency configuration

    parent

    • The projects to be inherited by all

      SpringBoot projects define several coordinate version numbers (dependency management, not dependency) to reduce dependencies Conflicting Purpose

    • spring-boot-starter-parent (2.5.0) and spring-boot-starter-parent (2.4.6) have a total of 57 coordinates Different versions

    Actual development

    When using arbitrary coordinates, only write G and A in GAV, V is provided by SpringBoot

    G:groupid

    A:artifactId

    V:version

    If a coordinate error occurs, specify the version again (be careful of version conflicts)

    Program startup

    Every SpringBoot program created contains a class similar to the following. We call this class the boot class

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

    Note:

    • SpringBoot When creating a project, use the jar packaging method

    • SpringBoot The boot class is the entry point of the project. Running the main method can start the project

    because we configured ## in pom.xml #spring-boot-starter-web depends on it, and this dependency knows through previous learning that it depends on tomcat, so running the main method can use tomcat Start our project.

    Switch web server

    Now we start the project using the

    tomcat server, can we use jetty# instead of tomcat ## Server, jetty When we maven are advanced, we will talk about the server used by maven private servers. To switch the web server, you need to exclude the default tomcat server. How to exclude it? Using the exclusion tag <pre class='brush:php;toolbar:false;'>&lt;dependency&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-web&lt;/artifactId&gt; &lt;exclusions&gt; &lt;exclusion&gt; &lt;artifactId&gt;spring-boot-starter-tomcat&lt;/artifactId&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;/exclusion&gt; &lt;/exclusions&gt; &lt;/dependency&gt;</pre> Now can we run the bootstrap class? Try running it. The printed log information is as follows

    How to solve the problems of SpringBoot official website construction and quick startupThe program stopped directly. Why? That's because if the

    tomcat

    server is excluded, there will be no server in the program. So at this time not only the tomcat server must be excluded, but also the jetty server must be introduced. In pom.xml, because the starting dependency of jetty is <pre class='brush:php;toolbar:false;'>&lt;dependency&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-jetty&lt;/artifactId&gt; &lt;/dependency&gt;</pre>, run the boot class again. You can see in the log information that

    is used. jetty

    Server

    How to solve the problems of SpringBoot official website construction and quick startup

    Summary:

    By switching the server, it is not difficult for us to find that we are using SpringBoot
    When changing technology, you only need to import the starting dependencies of the technology.

    Comparison between spring and springboot

    After we finished the introductory case in the previous article, we can find that there is a big difference between the two:

    How to solve the problems of SpringBoot official website construction and quick startup

    Coordinates

    • Spring

      The coordinates in the program need to be written by yourself, and there are many coordinates

    • SpringBoot

      The coordinates in the program are automatically generated by checking when we create the project

    web3.0 configuration class

    • Spring

      The program needs to write this configuration class by itself. Everyone has written this configuration class before, and it must feel very complicated

    • SpringBoot

      The program does not need to be written by ourselves

    Configuration Class

    • Spring/SpringMVC

      The configuration class of the program needs to be written by yourself. The SpringBoot program does not need to be written.

    Note: The
    Spring Initializr

    based on Idea requires an Internet connection to quickly build the SpringBoot project.

    Official website construction project

    The reason why the

    SpringBoot

    project can be quickly built in the entry case is because Idea uses the provided by the official website Quickly build the components of the SpringBoot project. So how to build projects on the official website? Build through the following stepsEnter the SpringBoot official website

    Enter the

    SpringBoot

    official website and drag it to the bottom to see the following content

    How to solve the problems of SpringBoot official website construction and quick startupThen click

    Spring Initializr

    The hyperlink will jump to the following page

    How to solve the problems of SpringBoot official website construction and quick startupDoes the content of this page look familiar? The interface is basically the same as the one we use

    Idea

    to quickly build the SpringBoot project. Enter the corresponding information on the above pageSelect dependencies

    Select

    Spring Web

    You can click the ADD DEPENDENCIES... CTRL B button in the upper right corner of the picture above , the following interface will appear<p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/887/227/168376831282036.png?x-oss-process=image/resize,p_40" class="lazy" alt="How to solve the problems of SpringBoot official website construction and quick startup"></p> <h4 id="生成工程">生成工程</h4> <p>以上步骤完成后就可以生成 <code>SpringBoot 工程了。在页面的最下方点击 GENERATE CTRL + 回车 按钮生成工程并下载到本地,如下图所示

    How to solve the problems of SpringBoot official website construction and quick startup

    打开下载好的压缩包可以看到工程结构和使用 Idea 生成的一模一样,如下图

    How to solve the problems of SpringBoot official website construction and quick startup

    而打开 pom.xml 文件,里面也包含了父工程和 Spring Web 的依赖。

    通过上面官网的操作,我们知道 Idea 中快速构建 SpringBoot 工程其实就是使用的官网的快速构建组件,那以后即使没有 Idea 也可以使用官网的方式构建 SpringBoot 工程。

    SpringBoot工程快速启动

    问题引入

    How to solve the problems of SpringBoot official website construction and quick startup

    以后我们和前端开发人员协同开发,而前端开发人员需要测试前端程序就需要后端开启服务器,这就受制于后端开发人员。为了摆脱这个受制,前端开发人员尝试着在自己电脑上安装 TomcatIdea ,在自己电脑上启动后端程序,这显然不现实。

    我们后端可以将 SpringBoot 工程打成 jar 包,该 jar 包运行不依赖于 TomcatIdea 这些工具也可以正常运行,只是这个 jar 包在运行过程中连接和我们自己程序相同的 Mysql 数据库即可。这样就可以解决这个问题,如下图

    How to solve the problems of SpringBoot official website construction and quick startup

    那现在问题是如何打包呢?

    打包

    由于我们在构建 SpringBoot 工程时已经在 pom.xml 中配置了如下插件

    <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
    </plugin>

    所以我们只需要使用 Mavenpackage 指令打包就会在 target 目录下生成对应的 Jar 包。

    注意:该插件必须配置,不然打好的 jar 包也是有问题的。

    启动

    进入 jar 包所在位置,在 命令提示符 中输入如下命令

    java -jar 包名.jar

    执行上述命令就可以看到 SpringBoot 运行的日志信息

    How to solve the problems of SpringBoot official website construction and quick startup

    The above is the detailed content of How to solve the problems of SpringBoot official website construction and quick startup. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    怎么使用SpringBoot+Canal实现数据库实时监控怎么使用SpringBoot+Canal实现数据库实时监控May 10, 2023 pm 06:25 PM

    Canal工作原理Canal模拟MySQLslave的交互协议,伪装自己为MySQLslave,向MySQLmaster发送dump协议MySQLmaster收到dump请求,开始推送binarylog给slave(也就是Canal)Canal解析binarylog对象(原始为byte流)MySQL打开binlog模式在MySQL配置文件my.cnf设置如下信息:[mysqld]#打开binloglog-bin=mysql-bin#选择ROW(行)模式binlog-format=ROW#配置My

    Spring Boot怎么使用SSE方式向前端推送数据Spring Boot怎么使用SSE方式向前端推送数据May 10, 2023 pm 05:31 PM

    前言SSE简单的来说就是服务器主动向前端推送数据的一种技术,它是单向的,也就是说前端是不能向服务器发送数据的。SSE适用于消息推送,监控等只需要服务器推送数据的场景中,下面是使用SpringBoot来实现一个简单的模拟向前端推动进度数据,前端页面接受后展示进度条。服务端在SpringBoot中使用时需要注意,最好使用SpringWeb提供的SseEmitter这个类来进行操作,我在刚开始时使用网上说的将Content-Type设置为text-stream这种方式发现每次前端每次都会重新创建接。最

    SpringBoot怎么实现二维码扫码登录SpringBoot怎么实现二维码扫码登录May 10, 2023 pm 08:25 PM

    一、手机扫二维码登录的原理二维码扫码登录是一种基于OAuth3.0协议的授权登录方式。在这种方式下,应用程序不需要获取用户的用户名和密码,只需要获取用户的授权即可。二维码扫码登录主要有以下几个步骤:应用程序生成一个二维码,并将该二维码展示给用户。用户使用扫码工具扫描该二维码,并在授权页面中授权。用户授权后,应用程序会获取一个授权码。应用程序使用该授权码向授权服务器请求访问令牌。授权服务器返回一个访问令牌给应用程序。应用程序使用该访问令牌访问资源服务器。通过以上步骤,二维码扫码登录可以实现用户的快

    SpringBoot/Spring AOP默认动态代理方式是什么SpringBoot/Spring AOP默认动态代理方式是什么May 10, 2023 pm 03:52 PM

    1.springboot2.x及以上版本在SpringBoot2.xAOP中会默认使用Cglib来实现,但是Spring5中默认还是使用jdk动态代理。SpringAOP默认使用JDK动态代理,如果对象没有实现接口,则使用CGLIB代理。当然,也可以强制使用CGLIB代理。在SpringBoot中,通过AopAutoConfiguration来自动装配AOP.2.Springboot1.xSpringboot1.xAOP默认还是使用JDK动态代理的3.SpringBoot2.x为何默认使用Cgl

    spring boot怎么对敏感信息进行加解密spring boot怎么对敏感信息进行加解密May 10, 2023 pm 02:46 PM

    我们使用jasypt最新版本对敏感信息进行加解密。1.在项目pom文件中加入如下依赖:com.github.ulisesbocchiojasypt-spring-boot-starter3.0.32.创建加解密公用类:packagecom.myproject.common.utils;importorg.jasypt.encryption.pbe.PooledPBEStringEncryptor;importorg.jasypt.encryption.pbe.config.SimpleStrin

    使用Java SpringBoot集成POI实现Word文档导出使用Java SpringBoot集成POI实现Word文档导出Apr 21, 2023 pm 12:19 PM

    知识准备需要理解ApachePOI遵循的标准(OfficeOpenXML(OOXML)标准和微软的OLE2复合文档格式(OLE2)),这将对应着API的依赖包。什么是POIApachePOI是用Java编写的免费开源的跨平台的JavaAPI,ApachePOI提供API给Java程序对MicrosoftOffice格式档案读和写的功能。POI为“PoorObfuscationImplementation”的首字母缩写,意为“简洁版的模糊实现”。ApachePOI是创建和维护操作各种符合Offic

    springboot怎么整合shiro实现多验证登录功能springboot怎么整合shiro实现多验证登录功能May 10, 2023 pm 04:19 PM

    1.首先新建一个shiroConfigshiro的配置类,代码如下:@ConfigurationpublicclassSpringShiroConfig{/***@paramrealms这儿使用接口集合是为了实现多验证登录时使用的*@return*/@BeanpublicSecurityManagersecurityManager(Collectionrealms){DefaultWebSecurityManagersManager=newDefaultWebSecurityManager();

    SpringBoot项目打包发布到外部tomcat遇到的问题怎么解决SpringBoot项目打包发布到外部tomcat遇到的问题怎么解决May 10, 2023 pm 05:49 PM

    先说遇到问题的情景:初次尝试使用springboot框架写了个小web项目,在IntellijIDEA中能正常启动运行。使用maven运行install,生成war包,发布到本机的tomcat下,出现异常,主要的异常信息是.......LifeCycleException。经各种搜索,找到答案。springboot因为内嵌tomcat容器,所以可以通过打包为jar包的方法将项目发布,但是如何将springboot项目打包成可发布到tomcat中的war包项目呢?1.既然需要打包成war包项目,首

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    DVWA

    DVWA

    Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software