27cfe12002d002d420115002bc5be1e63dadbccb
[oam/tr069-adapter.git] / mapper / src / main / java / org / commscope / tr069adapter / mapper / boot / MapperServiceBooter.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 package org.commscope.tr069adapter.mapper.boot;\r
20 \r
21 import org.springframework.boot.SpringApplication;\r
22 import org.springframework.boot.autoconfigure.SpringBootApplication;\r
23 import org.springframework.boot.autoconfigure.domain.EntityScan;\r
24 import org.springframework.boot.web.client.RestTemplateBuilder;\r
25 import org.springframework.context.annotation.Bean;\r
26 import org.springframework.context.annotation.ComponentScan;\r
27 import org.springframework.data.jpa.repository.config.EnableJpaRepositories;\r
28 import org.springframework.web.client.RestTemplate;\r
29 \r
30 @SpringBootApplication\r
31 @ComponentScan({"org.commscope.tr069adapter.mapper", "org.commscope.tr069adapter.mapper.acs",\r
32     "org.commscope.tr069adapter.mapper.ves", "org.commscope.tr069adapter.common"})\r
33 @EnableJpaRepositories("org.commscope.tr069adapter.mapper.dao")\r
34 @EntityScan("org.commscope.tr069adapter.mapper.entity")\r
35 public class MapperServiceBooter {\r
36 \r
37   public static void main(String[] args) {\r
38     SpringApplication.run(MapperServiceBooter.class, args);\r
39   }\r
40 \r
41   @Bean\r
42   public RestTemplate restTemplate(RestTemplateBuilder builder) {\r
43     return builder.build();\r
44   }\r
45 \r
46 }\r