zoukankan      html  css  js  c++  java
  • SpringBoot2+intellij IDEA开发前环境准备

    参考文档来源:https://www.yuque.com/atguigu/springboot/lcfeme

    1、系统要求:

    • Java 8 & 兼容java14 .
    • Maven 3.3+
    • idea 2019.1.2

    2、Maven安装目录中找到conf文件夹的settings.xml文件,配置以下内容

    <mirrors>
          <mirror>
            <id>nexus-aliyun</id>
            <mirrorOf>central</mirrorOf>
            <name>Nexus aliyun</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public</url>
          </mirror>
      </mirrors>
     
      <profiles>
             <profile>
                  <id>jdk-1.8</id>
                  <activation>
                    <activeByDefault>true</activeByDefault>
                    <jdk>1.8</jdk>
                  </activation>
                  <properties>
                    <maven.compiler.source>1.8</maven.compiler.source>
                    <maven.compiler.target>1.8</maven.compiler.target>
                    <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
                  </properties>
             </profile>
      </profiles>

    3、参考SpringBoot2官方文档,实现需求:浏览发送/hello请求,响应 Hello,Spring Boot 2 

      3.1新建一个Maven项目,在pom.xml中配置:

    <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>2.3.4.RELEASE</version>
        </parent>
    
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
    
        </dependencies>

    如下图:

      3.2 右侧使用Maven下载依赖资源

      3.3创建一个主程序类,项目入口

       3.4 接下来可以写MVC业务逻辑了,首先创建控制类,使用@RestController注解来说明,类中返回的数据是写向浏览器的(该注解包含了@controller和@ResponseBody)

      3.5 启动SpringBoot:运行主程序代码

     

     如果启动发现控制台报错:端口陪占用,则重新配置端口:

       URL访问:

  • 相关阅读:
    [leetcode] Combinations
    Binary Tree Level Order Traversal I II
    [leetcode] Remove Duplicates from Sorted Array I II
    [leetcode] Permutations II
    [leetcode] Permutations
    如何在线程间进行事件通知?
    如何实现迭代对象和迭代器对象?
    如何判断字符串a是否以字符串 b开头或者结尾?
    如何实现用户的历史记录功能(最多n条)?
    如何让字典保持有序?
  • 原文地址:https://www.cnblogs.com/Yi-ling/p/14437328.html
Copyright © 2011-2022 走看看