温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

maven配置

发布时间:2020-07-18 07:53:41 来源:网络 阅读:287 作者:xiaosawuhen 栏目:开发技术

<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>


<groupId>SpringBoot</groupId>

<artifactId>SpringBoot</artifactId>

<version>0.0.1-SNAPSHOT</version>

<packaging>jar</packaging>


<name>SpringBoot</name>


    <!-- 继承父包 -->

    <parent>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-parent</artifactId>

        <version>1.5.3.RELEASE</version>

        <relativePath></relativePath>

    </parent>


    <!-- spring-boot的web启动的jar包 -->

    <dependencies>

        <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter</artifactId>

        </dependency>

        <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter-web</artifactId>

        </dependency>


    <!--jpa的jar包 ,操作数据库的,类似hibernate-->

        <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter-data-jpa</artifactId>

        </dependency>

        

<dependency> 

<groupId>org.hibernate</groupId> 

<artifactId>hibernate-core</artifactId> 

</dependency> 

        

        <!--mysql驱动-->

        <dependency>

            <groupId>mysql</groupId>

            <artifactId>mysql-connector-java</artifactId>

        </dependency>

        

        <!--thymeleaf模板jar,是很不错的html数据传递取值,类似jsp的jstl-->

<!--         <dependency> -->

<!--             <groupId>org.springframework.boot</groupId> -->

<!--             <artifactId>spring-boot-starter-thymeleaf</artifactId> -->

<!--         </dependency> -->

        <dependency>

    <groupId>org.springframework.boot</groupId>

    <artifactId>spring-boot-starter-freemarker</artifactId>

</dependency>

        

        <dependency>  

            <groupId>org.springframework.boot</groupId>  

            <artifactId>spring-boot-starter-security</artifactId>  

        </dependency>  

        

    </dependencies>


    <!--maven的插件-->

    <build>

        <plugins>

            <plugin>

                <groupId>org.springframework.boot</groupId>

                <artifactId>spring-boot-maven-plugin</artifactId>

            </plugin>

        </plugins>

        

<!--     配置java版本 不配置的话默认父类配置的是1.6 -->

    <pluginManagement>

      <plugins>

        <plugin>

          <artifactId>maven-compiler-plugin</artifactId>

          <configuration>

            <source>1.8</source>

            <target>1.8</target>

          </configuration>

        </plugin>

      </plugins>

    </pluginManagement>

  </build>

</project>


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI