创建springboot项目

SpringBoot 就相当于不需要配置文件的Spring+SpringMVC。 常用的框架和第三方库都已经配置好了。

maven安装配置

管理项目依赖库的

maven的安装教程网上有很多,这里简单记录一下。

官网下载maven后并解压。
创建springboot项目_第1张图片

在其目录下添加一个目录repository

然后在conf目录下配置setting.xml文件,主要配置 ​​这两个标签

里指定刚刚repository的路径;
里配置获取依赖的镜像资源路径


<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
		  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">  
 <localRepository>D:\installpath\apache-maven-3.6.1\repositorylocalRepository>	 
  <pluginGroups>	
  pluginGroups>	
  <proxies>		
  proxies>
  <servers>
  servers>
  <mirrors>
	 <mirror>      
		<id>nexus-aliyunid>    
		<name>nexus-aliyunname>  
		 <url>http://maven.aliyun.com/nexus/content/groups/publicurl>    
		<mirrorOf>centralmirrorOf>      
	mirror>  
  mirrors>

  <profiles>
	<profile>
		<id>jdk-1.8id>
		<activation>
			<activeByDefault>trueactiveByDefault>
			<jdk>1.8jdk> 
		activation>	 
	<properties>	 
	<maven.compiler.source>1.8maven.compiler.source>	 
	<maven.compiler.target>1.8maven.compiler.target>	 
	<maven.compiler.compilerVersion>1.8maven.compiler.compilerVersion>	 
	properties>	 
	profile>
  profiles>
settings>

可以在环境变量中配置一下maven的路径。
在这里插入图片描述

IDEA关联maven

创建springboot项目_第2张图片

方式一:使用spring boot 提供的初始化器

使用 spring boot 提供的初始化器。 向导的方式,完成 spring boot 项目的创建: 使用方便。
创建springboot项目_第3张图片
创建springboot项目_第4张图片
新建好后,在pom.xml中很多依赖
这是起步依赖
创建springboot项目_第5张图片

方式二:使用maven向导创建项目

然后手动添加配置文件等
创建springboot项目_第6张图片
然后再pom.xml中手动添加springboot依赖


<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0modelVersion>
    <groupId>com.examplegroupId>
    <artifactId>javaWebartifactId>
    <version>0.0.1-SNAPSHOTversion>
    <name>javaWebname>
    <description>javaWebdescription>
    <properties>
        <java.version>1.8java.version>
        <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8project.reporting.outputEncoding>
        <spring-boot.version>2.6.13spring-boot.version>
    properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-webartifactId>
        dependency>
        <dependency>
            <groupId>org.mybatis.spring.bootgroupId>
            <artifactId>mybatis-spring-boot-starterartifactId>
            <version>2.2.2version>
        dependency>

        <dependency>
            <groupId>com.mysqlgroupId>
            <artifactId>mysql-connector-jartifactId>
            <scope>runtimescope>
        dependency>
        <dependency>
            <groupId>org.projectlombokgroupId>
            <artifactId>lombokartifactId>
            <optional>trueoptional>
        dependency>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-testartifactId>
            <scope>testscope>
        dependency>
    dependencies>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-dependenciesartifactId>
                <version>${spring-boot.version}version>
                <type>pomtype>
                <scope>importscope>
            dependency>
        dependencies>
    dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-compiler-pluginartifactId>
                <version>3.8.1version>
                <configuration>
                    <source>1.8source>
                    <target>1.8target>
                    <encoding>UTF-8encoding>
                configuration>
            plugin>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
                <version>${spring-boot.version}version>
                <configuration>
                    <mainClass>com.swl.javaweb.JavaWebApplicationmainClass>
                    <skip>trueskip>
                configuration>
                <executions>
                    <execution>
                        <id>repackageid>
                        <goals>
                            <goal>repackagegoal>
                        goals>
                    execution>
                executions>
            plugin>
        plugins>
    build>

project>

你可能感兴趣的:(Java,spring,boot,后端,java)