zoukankan      html  css  js  c++  java
  • springboot多模块controller访问的问题

    参考 https://blog.csdn.net/qq_25091649/article/details/88429512

    情况一:在主类直接写controller接口,能够访问到

    @SpringBootApplication
    @RestController
    public class DemoApplication {
    	@RequestMapping("/index")
        public String index() {
          
            return "this is index!";
        }
    
    
    	public static void main(String[] args) {
    		//SpringApplication.run(DemoApplication.class, args);
    		SpringApplication application = new SpringApplication(DemoApplication.class);
    		application.setBannerMode(Mode.OFF);//关闭banner
    		application.run(args);
    	}
    
    }
    


    情况二:controller类单独写,且controller所在目录低于主类目录,此时也可以访问到

      

    情况三:controller类单独写,且controller所在目录不在住类目录下,此时需要添加注解ComponentScan,里面写入要扫描的包

    @ComponentScan(basePackages = {"com.xiao","com.example"})
    @SpringBootApplication
    public class DemoApplication {
    
    	public static void main(String[] args) {
    		//SpringApplication.run(DemoApplication.class, args);
    		SpringApplication application = new SpringApplication(DemoApplication.class);
    		application.setBannerMode(Mode.OFF);//关闭banner
    		application.run(args);
    	}
    
    }
    

    1、当启动类和controller在同一类中时,需要在该类上添加注解@Controller;

    2、当启动类和controller分开时,启动目录高于controller目录,启动类上只有注解@SpringBootApplication;

    3、当启动类和controller分开时,如果启动类在某个包下,需要在启动类中增加注解@ComponentScan,配置需要扫描的包名;

    补充说明:对外的只有主类所在的模块,所以需要把其它模块添加到住类所在模块

  • 相关阅读:
    postfix 邮件中继配置
    shell脚本网络流量实时查看
    zabbix配置邮件报警(第四篇)
    pptp服务故障
    Centos6.7 ELK日志系统部署
    rrdtool 实践
    Centos6.7安装Cacti教程
    Nagios事件机制实践
    Nrpe 插件安装教程
    如何查找一个命令由哪个rpm安装&&rpm 的相关查询方法
  • 原文地址:https://www.cnblogs.com/jthr/p/14230458.html
Copyright © 2011-2022 走看看