Skip to content

Commit 975bd4b

Browse files
authored
The records related to generated password no more appear in catalina.out (#224)
Co-authored-by: Arun Kumar K R
1 parent a0ce402 commit 975bd4b

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

service/src/main/java/com/ericsson/eiffel/remrem/generate/App.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@
2020
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
2121
import org.springframework.boot.autoconfigure.SpringBootApplication;
2222
import org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration;
23+
import org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration;
2324
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
2425
import org.springframework.context.ApplicationContext;
2526
import org.springframework.context.annotation.ComponentScan;
2627
import org.springframework.context.annotation.PropertySource;
2728

2829
@SpringBootApplication(scanBasePackages = {"com.ericsson.eiffel.remrem", "com.ericsson.eiffel.remrem.semantics"})
29-
@EnableAutoConfiguration(exclude = { JacksonAutoConfiguration.class })
30+
@EnableAutoConfiguration(exclude = { JacksonAutoConfiguration.class, UserDetailsServiceAutoConfiguration.class})
3031
@PropertySource(value = "file:${catalina.home}/conf/config.properties", ignoreResourceNotFound = true)
3132
public class App extends SpringBootServletInitializer {
3233

0 commit comments

Comments
 (0)