File tree 1 file changed +2
-1
lines changed
service/src/main/java/com/ericsson/eiffel/remrem/generate
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 20
20
import org .springframework .boot .autoconfigure .EnableAutoConfiguration ;
21
21
import org .springframework .boot .autoconfigure .SpringBootApplication ;
22
22
import org .springframework .boot .autoconfigure .jackson .JacksonAutoConfiguration ;
23
+ import org .springframework .boot .autoconfigure .security .servlet .UserDetailsServiceAutoConfiguration ;
23
24
import org .springframework .boot .web .servlet .support .SpringBootServletInitializer ;
24
25
import org .springframework .context .ApplicationContext ;
25
26
import org .springframework .context .annotation .ComponentScan ;
26
27
import org .springframework .context .annotation .PropertySource ;
27
28
28
29
@ SpringBootApplication (scanBasePackages = {"com.ericsson.eiffel.remrem" , "com.ericsson.eiffel.remrem.semantics" })
29
- @ EnableAutoConfiguration (exclude = { JacksonAutoConfiguration .class })
30
+ @ EnableAutoConfiguration (exclude = { JacksonAutoConfiguration .class , UserDetailsServiceAutoConfiguration . class })
30
31
@ PropertySource (value = "file:${catalina.home}/conf/config.properties" , ignoreResourceNotFound = true )
31
32
public class App extends SpringBootServletInitializer {
32
33
You can’t perform that action at this time.
0 commit comments