Spring can not load CSS
Spring can not load CSS Hello I have a little problem, when i'm starting my Spring boot web app, when i'm going to my localhost it cant load CSS. I figured out that it's happening after adding "@ComponentScan" into Main class. So i tried to remove it and then my whole controllers couldnt load ... Meybe someone know solution to this problem. I've tried for about 3 days to do it and nothing helped. I'm putting a code below. meybe someone could figre it out for me. MAIN.class @SpringBootApplication @EntityScan({"com.estomed.Model"}) @EnableJpaRepositories({"com.estomed.Repository"}) @ComponentScan(basePackages = {"com.estomed"}, useDefaultFilters = true) public class SynchronizesiteApplication { public static void main(String args) { SpringApplication.run(SynchronizesiteApplication.class, args); } } WebConfig.class @Configuration public class WebConfig implements WebMvcConfigurer { @Override public void addResourc...
