Skip to content

Commit

Permalink
fix: error pages path exception
Browse files Browse the repository at this point in the history
  • Loading branch information
bpereto committed Apr 30, 2024
1 parent e013e9d commit 23a2275
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;

@SpringBootApplication
@SpringBootApplication(exclude = {ErrorMvcAutoConfiguration.class})
@EnableZuulProxy
@MapperScan("org.apache.pulsar.manager.mapper")
public class PulsarManagerApplication {
Expand Down

0 comments on commit 23a2275

Please sign in to comment.