You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@UseLocators
@SpringBootApplication
@LocatorApplication(name = "Locator")
@EnableSecurity
public class GeodeLocatorApplication
{
public static void main(String[] args)
{
new SpringApplicationBuilder(GeodeLocatorApplication.class)
.web(WebApplicationType.NONE)
.build()
.run(args);
System.err.println("Press <enter> to exit!");
new Scanner(System.in).nextLine();
}
}