|
@@ -3,8 +3,6 @@ package org.thyy.medinsur;
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
-import org.springframework.context.annotation.Bean;
|
|
|
-import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
@MapperScan("org.thyy.medinsur.dao")
|
|
|
@SpringBootApplication
|
|
@@ -13,10 +11,4 @@ public class ThyyMedinsurApplication {
|
|
|
public static void main(String[] args) {
|
|
|
SpringApplication.run(ThyyMedinsurApplication.class, args);
|
|
|
}
|
|
|
-
|
|
|
- @Bean
|
|
|
- public RestTemplate restTemplate() {
|
|
|
- return new RestTemplate();
|
|
|
- }
|
|
|
-
|
|
|
}
|