欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用iDea创建一个Springboot项目

程序员文章站 2022-05-15 13:34:02
工欲善其事,必先利其器。 不难发现,还是有很多小朋友在使用eclipse开发java项目。当你接触IDEA后,一切都变得美好了。 使用IDEA创建一个springboot项目是一件极其简单的事情。界面化的依赖选择令人心旷神怡,有木有。 下面就和我一起轻扣IDEA的大门,新建一个springboot项 ......

创建一个Springboot项目


写在前面:
这篇文章是我自己在写springboot中跟着老师教学所记录,并非适用于所有人,仅供参考哦。


1. new project中选择Spring Initializr,点击next

使用iDea创建一个Springboot项目

2. 如图所示,修改后点击next

使用iDea创建一个Springboot项目

3. 选择左侧web页,在右侧勾选spring Web

使用iDea创建一个Springboot项目

4. 选择左侧template页,右侧勾选thymeleaf

使用iDea创建一个Springboot项目

5. SQL页面勾选JDBC API、Mybatis Framework、Mysql Driver三项,然后检查有没有漏的。点击next

使用iDea创建一个Springboot项目

6. 直接finish完成。

使用iDea创建一个Springboot项目

7. 编写application.properties文件

spring.datasource.url=jdbc:mysql://localhost:3306/daily_word?serverTimezone=GMT%2B8
!--spring.datasource.url=jdbc:mysql://localhost:3306/daily_word
spring.datasource.username=root
spring.datasource.password=你的密码
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
!-spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
server.port=8080
!--mapping对应的就是resources下面的mapping目录。
mybatis.mapper-locations=classpath:mapping/*.xml 
!--entity是包目录。
mybatis.type-aliases-package=com.daily_word.entity
logging.level.com.emall_3_afternoon.mapper=debug

spring.servlet.multipart.max-file-size=30MB
spring.servlet.multipart.max-request-size=30MB

!--RedisProperties!--Redis数据库索引(默认为0)
spring.redis.database=0  
!--Redis服务器地址
spring.redis.host=127.0.0.1
!--Redis服务器连接端口
spring.redis.port=6379
!--Redis服务器连接密码(默认为空)
spring.redis.password=你的密码
!--连接池最大连接数(使用负值表示没有限制)
spring.redis.jedis.pool.max-active=8
!--连接池最大阻塞等待时间(使用负值表示没有限制)
!--spring.redis.jedis.pool.max-wait=-1
!--连接池中的最大空闲连接
spring.redis.jedis.pool.max-idle=8  
!-- # 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=0  
!-- # 连接超时时间(毫秒)
!--spring.redis.timeout=

8. 在com.xxx下新建package分别名为entity、controller、service、mapper、util五个包(均小写)

9. 在resource下新建directory名为mapping

10. 在util下新建类名为SpringUtil

package com.daily_word.util;

import org.springframework.context.ApplicationContext;

import java.util.Arrays;

public class SpringUtil {
    public static ApplicationContext applicationContext = null;
    public  static void setApplicationContext(ApplicationContext ctx){
        SpringUtil.applicationContext = ctx;
    }
    public static void printBean(){
        String[] beanNames = applicationContext.getBeanDefinitionNames();
        Arrays.sort(beanNames);
        for (String beanName : beanNames) {
            System.out.println(beanName);
        }
    }
}

11. 修改com.xxx下的Application文件(记得改包名)

package com.daily_word;

import com.daily_word.util.SpringUtil;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;

@SpringBootApplication
public class DailyWordApplication {

    public static void main(String[] args) {
        ApplicationContext applicationContext =
                SpringApplication.run(DailyWordApplication.class, args);
        SpringUtil.setApplicationContext(applicationContext);
        //SpringUtil.printBean();

        //SpringApplication.run(Emall3AfternoonApplication.class, args);
    }

}

12. 最后的文件结构

使用iDea创建一个Springboot项目

13. run一下看看能不能跑起来

本文地址:https://blog.csdn.net/qq_43706969/article/details/107888640