Skip to content

Commit

Permalink
Grails Boot: Support reloading spring beans from resources.xml when c…
Browse files Browse the repository at this point in the history
…hanged
  • Loading branch information
rainboyan committed May 26, 2023
1 parent 67500f9 commit 491e813
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import java.io.File;
import java.io.IOException;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
Expand Down Expand Up @@ -67,7 +66,7 @@ public class GrailsDevelopmentModeWatchApplicationContextInitializer implements

private static final Log logger = LogFactory.getLog(GrailsDevelopmentModeWatchApplicationContextInitializer.class);

private static final List<String> FILE_EXTENSIONS = List.of("groovy", "java", "properties");
private static final List<String> FILE_EXTENSIONS = List.of("groovy", "java", "properties", "xml");
private static final String SOURCE_MAIN_JAVA = "src/main/java";
private static final String SOURCE_MAIN_GROOVY = "src/main/groovy";

Expand Down

0 comments on commit 491e813

Please sign in to comment.