| 1 | package edu.ucsb.cs.scaffold.startup; | |
| 2 | ||
| 3 | import lombok.extern.slf4j.Slf4j; | |
| 4 | import org.springframework.beans.factory.annotation.Autowired; | |
| 5 | import org.springframework.boot.ApplicationArguments; | |
| 6 | import org.springframework.boot.ApplicationRunner; | |
| 7 | import org.springframework.context.annotation.Configuration; | |
| 8 | ||
| 9 | @Slf4j | |
| 10 | @Configuration | |
| 11 | public class ScaffoldApplicationRunner implements ApplicationRunner { | |
| 12 | ||
| 13 | @Autowired ScaffoldStartup scaffoldStartup; | |
| 14 | ||
| 15 | @Override | |
| 16 | public void run(ApplicationArguments args) throws Exception { | |
| 17 | log.info("ScaffoldApplicationRunner.run called"); | |
| 18 |
1
1. run : removed call to edu/ucsb/cs/scaffold/startup/ScaffoldStartup::alwaysRunOnStartup → KILLED |
scaffoldStartup.alwaysRunOnStartup(); |
| 19 | } | |
| 20 | } | |
Mutations | ||
| 18 |
1.1 |