30 lines
1.0 KiB
Java
30 lines
1.0 KiB
Java
package org.baeldung;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
|
|
|
/**
|
|
* Main Application Class - uses Spring Boot. Just run this as a normal Java
|
|
* class to run up a Jetty Server (on http://localhost:8080)
|
|
*
|
|
*/
|
|
@EnableScheduling
|
|
@EnableAutoConfiguration
|
|
@ComponentScan("org.baeldung")
|
|
public class SampleLDAPApplication extends WebMvcConfigurerAdapter {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(SampleLDAPApplication.class, args);
|
|
}
|
|
|
|
@Override
|
|
public void addViewControllers(ViewControllerRegistry registry) {
|
|
registry.addViewController("/login").setViewName("login");
|
|
registry.addViewController("/graph").setViewName("graph");
|
|
}
|
|
|
|
} |