java不同module之间调用方法

情况如下:
第一个模块是 common模块
第二个模块是 service模块
在service中想要调用common模块中的方法:需要将common模块导入service的pom.xml文件当中

        <dependency>
            <groupId>com.xxxgroupId>
            <artifactId>commonartifactId>

你可能感兴趣的:(java,spring)