• Maven


    1.配置多仓库

    <repositories>
        <repository>
            <!-- 仓库id -->
            <id>public-repository</id>
            <!-- 仓库名 -->
            <name>public repository</name>
            <!-- 仓库的url地址 -->
            <url>http://nexus.intra.xxxx.com/content/groups/public</url>
        </repository>
        <repository>
            <!-- 仓库id -->
            <id>private-repository</id>
            <!-- 仓库名 -->
            <name>private repository</name>
            <!-- 仓库的url地址 -->
            <url>http://nexus.intra.xxxx.com/content/groups/private</url>
        </repository>
    </repositories>

    2.排除不需要的JAR包

    例如:spring-core会自动引入commons-logging-1.2。当我们添加其他依赖的时候,有可能也会自动引入commons-logging,而且版本有可能不是1.2,这个时候这两个commons-logging就会互相冲突,需要使用 <exclusions> 排除那个不想要的JAR包。

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>4.3.6.RELEASE</version>
        <exclusions>
            <exclusion>
                <artifactId>commons-logging</artifactId>
                <groupId>commons-logging</groupId>
            </exclusion>
        </exclusions>
    </dependency> 

    3.项目启动报Attempted to load applicationConfig: [classpath:/application.yml] but snakeyaml was not found on the classpath

    试图加载applicationconfig:[classpath:/application.yml] 但在类路径上找不到snakeyaml。在pom文件中手动加入对snakeyaml的依赖即可。

    <dependency>
        <groupId>org.yaml</groupId>
        <artifactId>snakeyaml</artifactId>
    </dependency>
  • 相关阅读:
    html中script标签的使用方法
    css关于浮动的高度塌陷
    canvas用数组方式做出下雨效果
    canvas简易画板。
    html5新标签
    闭包的意义及用法
    字符串的添加方法
    js几种数组遍历方法.
    简易网页打卡页面.
    回忆继承多态
  • 原文地址:https://www.cnblogs.com/helios-fz/p/11077150.html
Copyright © 2020-2023  润新知