其他分享
首页 > 其他分享> > 课程管理之课程信息确认的后端接口

课程管理之课程信息确认的后端接口

作者:互联网

1、确认查询的信息来至于好几个表,如果使用以前那种方式太过于麻烦

2、通过写SQL语句的方法,进行配置

3、有个小问题,xml文件不会自动编译,需要加一个配置

    <build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
    </build>

还需要在properties中配置

mybatis-plus.mapper-locations=classpath:com/joy/eduservice/mapper/xml/*.xml

标签:xml,mapper,false,配置,确认,locations,接口,课程,课程管理
来源: https://www.cnblogs.com/joxgod/p/15639823.html