我在网上找了两种方法都不太可以
网上说的在@SpringBootApplication注解后面加上(exclude = {DataSourceAutoConfiguration.class})也试过了,都不行。
Application类

package com.example;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.ServletComponentScan;
@SpringBootApplication
@ServletComponentScan

public class ServletJspDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServletJspDemoApplication.class, args);
    }

}

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐