使用springboot开发多模块管理系统笔记

访问非入口模块下的路由问题
需要在**application.java 文件中添加 @ComponentScan(basePackages={"包名"})
	package com.htcasting.web;
	import org.springframework.boot.SpringApplication;
	import org.springframework.boot.autoconfigure.SpringBootApplication;
	import org.springframework.context.annotation.ComponentScan;
	@ComponentScan(basePackages = {"com.htcasting"})
	@SpringBootApplication
	public class WebApplication {
		public static void main(String[] args) {
        	SpringApplication.run(WebApplication.class, args);
    	}
    }
springboot 集成mybatis时,*Mapper.xml文件的位置问题

可以放在两个地方:

  1. 在classpath:ressources目录下创建子目录,放在这下面
  2. 放在类的包下,这时会有问题,包是source类型,不会被编译到target目录下,会报找不到映射的错误
    解决方案:
    在pom.xml 中加入一下代码
<build>
	<resources>
        <resource>
            <directory>src/main/javadirectory>
            <includes>
                <include>**/*.xmlinclude>
            
            includes>
        resource>
    resources>
 build>

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