You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
521 B
19 lines
521 B
package sample.ws; |
|
|
|
import org.springframework.boot.SpringApplication; |
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; |
|
import org.springframework.context.annotation.ComponentScan; |
|
import org.springframework.context.annotation.Configuration; |
|
|
|
/** |
|
* Created by in329dei on 28-2-14. |
|
*/ |
|
@Configuration |
|
@EnableAutoConfiguration |
|
@ComponentScan |
|
public class SampleWsApplication { |
|
|
|
public static void main(String[] args) throws Exception { |
|
SpringApplication.run(SampleWsApplication.class, args); |
|
} |
|
}
|
|
|