springboot集成redis,dubbo,ssm,thymeleaf常用依赖

springboot在idea里面创建的起步依赖


    org.springframework.boot
    spring-boot-starter-web

使用thymeleaf的起步依赖


    org.springframework.boot
    spring-boot-starter-thymeleaf

使用dubbo的依赖,包括阿里巴巴集成springboot的依赖以及zeokeeper的依赖,以及接口工程的依赖


    com.alibaba.spring.boot
    dubbo-spring-boot-starter
    2.0.0


    com.101tec
    zkclient
    0.10


    com.yuyi
    interface
    1.0.0

使用redis的依赖


    org.springframework.boot
    spring-boot-starter-data-redis

使用mybatis的依赖,包括mybatis整合springboot的依赖与mysql驱动的依赖


    org.mybatis.spring.boot
    mybatis-spring-boot-starter
    2.0.0


    mysql
    mysql-connector-java
    8.0.19

mybatis逆向工程插件


    org.mybatis.generator
    mybatis-generator-maven-plugin
    1.3.7
    
    
        GeneratorMapper.xml
        true
        true
    

mybatis配置文件已上传

使用jsp的依赖,仅仅用于展示页面


    org.apache.tomcat.embed
    tomcat-embed-jasper

maven编译xml映射文件的位置

        
            
                src/main/java
                
                    **/*.xml
                
            
        

你可能感兴趣的:(配置文件)