后端SpringBoot学习项目-项目基础搭建

IDEA创建SpringBoot项目

大佬文章,有基础者可以直接打开参考。我这个记录的是纯纯小白的步骤

创建项目

按钮新建

点击按钮-----新建项目

弹窗配置--生成器

  • 弹窗中选择生成器 ---- Spring Initializr

    ○ 服务器URL修改为 start.springboot.io start.aliyun.com(会更快,类似于npm的镜像源)
    ○ 后面几个输入框都可以修改
    ○ 类型选择Maven
    ○ JDK选则1.8
    ○ Java选择8(2023版本IDEA,将服务器URL改成springboot.io后最低选择17。改成start.aliyun.com后可以选择8)

弹窗配置--项目依赖

  • Spring Boot DevTools 的功能:自动重启、全局配置文件、实时属性更新、依赖项的热替换
  • Lombok的功能:简化 Java Bean开发,避免手动编写getter、setter、equals、hashCode等方法,减少错误

项目内容

maven配置

配置信息

文件---->设置---->直接搜索maven

构建、执行、部署---->构建工具---->maven

主路径修改为自己本地的Maven安装地址

maven依赖

● 点击右侧图标可以展开/隐藏maven配置面板

● 点击刷新按钮可以重新下载maven依赖

配置启动项

编辑配置

配置运行

● 点击 + 号

● 选择Spring Boot

● 输入名称

● 选择运行主类

配置yml文件

修改文件类型

将application.properties文件重命名为application.yml文件

配置文件内容

● 单个数据源

serverTimezone 默认时区:北京时间

bash 复制代码
server:
  port: 80
spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/drht?serverTimezone=GMT%2b8
    username: root
    password: skyrain

● 多个数据源

多个数据源与依赖(druid-spring-boot-starter)相关

xml 复制代码
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>druid-spring-boot-starter</artifactId>
    <version>1.2.16</version>
</dependency>

主页面修改

修改主页面内容后,启动后更方便看服务信息

java 复制代码
package com.test.java;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.core.env.Environment;

import java.net.InetAddress;

/**
 * 启动类
 * @author ll
 */
@SpringBootApplication
@MapperScan("com.test.drhtspringboot.mapper")
public class JavaTestApplication {

    public static void main(String[] args) throws Exception   {

        ConfigurableApplicationContext application = SpringApplication.run(JavaTestApplication.class, args);
        Environment env = application.getEnvironment();
        String ip = InetAddress.getLocalHost().getHostAddress();
        String port = env.getProperty("server.port");
        String property = env.getProperty("server.servlet.context-path");
        String path = property == null ? "" : property;
        System.out.println("\n\t" +
                           "----------------------------------------------------------\n\t" +
                           "Application Sailrui-Boot is running! Access URLs:\n\t" +
                           "Local: \t\thttp://localhost" + (port != null ? ":"+port : "") + path + "/\n\t" +
                           "External: \thttp://" + ip + (port != null ? ":"+port : "") + path + "/\n\t" +
                           "------------------------------------------------------------");
    }

}

运行后效果

相关推荐
2401_857636395 分钟前
共享汽车管理新纪元:SpringBoot框架应用
数据库·spring boot·汽车
man201738 分钟前
【2024最新】基于springboot+vue的闲一品交易平台lw+ppt
vue.js·spring boot·后端
hlsd#1 小时前
关于 SpringBoot 时间处理的总结
java·spring boot·后端
路在脚下@1 小时前
Spring Boot 的核心原理和工作机制
java·spring boot·后端
幸运小圣1 小时前
Vue3 -- 项目配置之stylelint【企业级项目配置保姆级教程3】
开发语言·后端·rust
无敌最俊朗@1 小时前
stm32学习之路——八种GPIO口工作模式
c语言·stm32·单片机·学习
EterNity_TiMe_1 小时前
【论文复现】STM32设计的物联网智能鱼缸
stm32·单片机·嵌入式硬件·物联网·学习·性能优化
计算机-秋大田2 小时前
基于微信小程序的农场管理系统的设计与实现,LW+源码+讲解
java·spring boot·微信小程序·小程序·vue
好奇的菜鸟2 小时前
Spring Boot 启动时自动配置 RabbitMQ 交换机、队列和绑定关系
spring boot·rabbitmq
小桥流水人家jjh2 小时前
Mybatis执行自定义SQL并使用PageHelper进行分页
java·数据库·spring boot·sql·mybatis