PAN-54 Working version includes no beans and no connection to the database.
This commit is contained in:
@@ -3,11 +3,18 @@ package edu.msudenver.tsp.website;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication(scanBasePackages = "edu.msudenver.tsp")
|
||||
@SpringBootApplication
|
||||
public class Application {
|
||||
|
||||
public static void main(final String[] args) {
|
||||
SpringApplication.run(Application.class, args);
|
||||
}
|
||||
|
||||
/*
|
||||
@Bean
|
||||
@Autowired
|
||||
public UserService userService(@Autowired final RestService restService) {
|
||||
return new UserService(restService);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user