Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.85 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>com.telefonica.handler</groupId>
  7. <artifactId>telefonicaTeltonikaHandler</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10.  
  11. <name>telefonicaTeltonikaHandler</name>
  12. <description>telefonica Teltonika Handler</description>
  13.  
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>1.5.9.RELEASE</version>
  18. <relativePath/> <!-- lookup parent from repository -->
  19. </parent>
  20.  
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <java.version>1.8</java.version>
  25. </properties>
  26.  
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-integration</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-jdbc</artifactId>
  35. </dependency>
  36.  
  37. <dependency>
  38. <groupId>com.h2database</groupId>
  39. <artifactId>h2</artifactId>
  40. <scope>runtime</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <!-- Logging dependencies -->
  48. <dependency>
  49. <groupId>ch.qos.logback</groupId>
  50. <artifactId>logback-classic</artifactId>
  51. </dependency>
  52. </dependencies>
  53.  
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>
  63.  
  64. @SpringBootApplication
  65. public class TelefonicaTeltonikaHandlerApplication implements CommandLineRunner {
  66.  
  67. public static final Logger LOG = LoggerFactory.getLogger (TelefonicaTeltonikaHandlerApplication.class);
  68.  
  69. private final static int TCP_PORT = 5202;
  70.  
  71. private final static int BUFFER_SIZE = 2048;
  72.  
  73. private DatagramSocket socket = null;
  74.  
  75. private byte[] ackimei = { 0x01 };
  76.  
  77. public static void main(String[] args) {
  78. SpringApplication app = new SpringApplication(TelefonicaTeltonikaHandlerApplication.class);
  79. app.run(args);
  80. }
  81.  
  82.  
  83. @Override
  84. public void run(String... arg0) throws Exception {
  85.  
  86. socket = new DatagramSocket(TCP_PORT);
  87.  
  88. byte[] receiveData = new byte[BUFFER_SIZE];
  89. byte[] sendData = new byte[BUFFER_SIZE];
  90.  
  91. while (true) {
  92.  
  93. DatagramPacket receivePacket = new DatagramPacket(receiveData, receiveData.length);
  94. socket.receive(receivePacket);
  95.  
  96. String sentence = new String( receivePacket.getData(), 0, receivePacket.getLength() );
  97.  
  98. LOG.info("recived [" + sentence + "] from " + receivePacket.getAddress());
  99.  
  100. //DataInputStream dis = new DataInputStream(new ByteArrayInputStream(receivePacket.getData()));
  101.  
  102. InetAddress IPAddress = receivePacket.getAddress();
  103. int port = receivePacket.getPort();
  104.  
  105. DatagramPacket sendPacket = new DatagramPacket(receiveData, receiveData.length, IPAddress, receivePacket.getPort());
  106. socket.send (sendPacket);
  107.  
  108. }
  109. }
  110. }
  111.  
  112. MacBook-Pro-de-lopes:telefonicaTeltonikaHandler lopes$ mvn clean package
  113. [INFO] Scanning for projects...
  114. [INFO]
  115. [INFO] ------------------------------------------------------------------------
  116. [INFO] Building telefonicaTeltonikaHandler 0.0.1-SNAPSHOT
  117. [INFO] ------------------------------------------------------------------------
  118. [INFO]
  119. [INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ telefonicaTeltonikaHandler ---
  120. [INFO] Deleting /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/target
  121. [INFO]
  122. [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ telefonicaTeltonikaHandler ---
  123. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  124. [INFO] Copying 1 resource
  125. [INFO] Copying 1 resource
  126. [INFO]
  127. [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ telefonicaTeltonikaHandler ---
  128. [INFO] Changes detected - recompiling the module!
  129. [INFO] Compiling 2 source files to /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/target/classes
  130. [INFO]
  131. [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ telefonicaTeltonikaHandler ---
  132. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  133. [INFO] skip non existing resourceDirectory /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/src/test/resources
  134. [INFO]
  135. [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ telefonicaTeltonikaHandler ---
  136. [INFO] Changes detected - recompiling the module!
  137. [INFO] Compiling 2 source files to /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/target/test-classes
  138. [INFO]
  139. [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ telefonicaTeltonikaHandler ---
  140. [INFO] Surefire report directory: /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/target/surefire-reports
  141.  
  142. -------------------------------------------------------
  143. T E S T S
  144. -------------------------------------------------------
  145. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.telefonica.handler.telefonicaTeltonikaHandlerApplicationTests], using SpringBootContextLoader
  146. 2017-12-13 15:31 [main] INFO o.s.t.c.s.AbstractContextLoader - Could not detect default resource locations for test class [com.telefonica.handler.telefonicaTeltonikaHandlerApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}.
  147. 2017-12-13 15:31 [main] INFO o.s.t.c.s.AnnotationConfigContextLoaderUtils - Could not detect default configuration classes for test class [com.telefonica.handler.telefonicaTeltonikaHandlerApplicationTests]: telefonicaTeltonikaHandlerApplicationTests does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
  148. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Found @SpringBootConfiguration com.telefonica.handler.telefonicaTeltonikaHandlerApplication for test class com.telefonica.handler.telefonicaTeltonikaHandlerApplicationTests
  149. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener]
  150. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Could not instantiate TestExecutionListener [org.springframework.test.context.web.ServletTestExecutionListener]. Specify custom listener classes or make the default listener classes (and their required dependencies) available. Offending class: [javax/servlet/ServletContext]
  151. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@46944ca9, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@22bac7bc, org.springframework.test.context.support.DirtiesContextTestExecutionListener@63798ca7, org.springframework.test.context.transaction.TransactionalTestExecutionListener@4612b856, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@22875539, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@5674e1f2, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@79c7532f, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@2a448449, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@32f232a5, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@43f82e78, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@e54303]
  152. Running com.telefonica.handler.TCPTest
  153.  
  154. . ____ _ __ _ _
  155. /\ / ___'_ __ _ _(_)_ __ __ _
  156. ( ( )___ | '_ | '_| | '_ / _` |
  157. \/ ___)| |_)| | | | | || (_| | ) ) ) )
  158. ' |____| .__|_| |_|_| |___, | / / / /
  159. =========|_|==============|___/=/_/_/_/
  160. :: Spring Boot :: (v1.5.9.RELEASE)
  161.  
  162. 2017-12-13 15:31 [main] INFO o.a.m.surefire.booter.ForkedBooter - Starting ForkedBooter v2.18.1 on MacBook-Pro-de-lopes.local with PID 17215 (started by lopes in /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler)
  163. 2017-12-13 15:31 [main] INFO o.a.m.surefire.booter.ForkedBooter - No active profile set, falling back to default profiles: default
  164. 2017-12-13 15:31 [main] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@669513d8: startup date [Wed Dec 13 15:31:06 CET 2017]; root of context hierarchy
  165. 2017-12-13 15:31 [main] INFO o.s.i.config.IntegrationRegistrar - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  166. WARNING: An illegal reflective access operation has occurred
  167. SUREFIRE-859: WARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils$1 (file:/Users/lopes/.m2/repository/org/springframework/spring-core/4.3.13.RELEASE/spring-core-4.3.13.RELEASE.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
  168. WARNING: Please consider reporting this to the maintainers of org.springframework.cglib.core.ReflectUtils$1
  169. WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
  170. WARNING: All illegal access operations will be denied in a future release
  171. 2017-12-13 15:31 [main] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  172. 2017-12-13 15:31 [main] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'taskScheduler' has been explicitly defined. Therefore, a default ThreadPoolTaskScheduler will be created.
  173. 2017-12-13 15:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$883d35a8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  174. 2017-12-13 15:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'integrationGlobalProperties' of type [org.springframework.beans.factory.config.PropertiesFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  175. 2017-12-13 15:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'integrationGlobalProperties' of type [java.util.Properties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  176. 2017-12-13 15:31 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  177. 2017-12-13 15:31 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Registering beans for JMX exposure on startup
  178. 2017-12-13 15:31 [main] INFO o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 0
  179. 2017-12-13 15:31 [main] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  180. 2017-12-13 15:31 [main] INFO o.s.i.c.PublishSubscribeChannel - Channel 'application.errorChannel' has 1 subscriber(s).
  181. 2017-12-13 15:31 [main] INFO o.s.i.endpoint.EventDrivenConsumer - started _org.springframework.integration.errorLogger
  182.  
  183. [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ telefonicaTeltonikaHandler ---
  184. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  185. [INFO] Copying 1 resource
  186. [INFO] Copying 1 resource
  187. [INFO]
  188. [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ telefonicaTeltonikaHandler ---
  189. [INFO] Changes detected - recompiling the module!
  190. [INFO] Compiling 2 source files to /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/target/classes
  191. [INFO]
  192. [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ telefonicaTeltonikaHandler ---
  193. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  194. [INFO] skip non existing resourceDirectory /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/src/test/resources
  195. [INFO]
  196. [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ telefonicaTeltonikaHandler ---
  197. [INFO] Changes detected - recompiling the module!
  198. [INFO] Compiling 2 source files to /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/target/test-classes
  199. [INFO]
  200. [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ telefonicaTeltonikaHandler ---
  201. [INFO] Surefire report directory: /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler/target/surefire-reports
  202.  
  203. -------------------------------------------------------
  204. T E S T S
  205. -------------------------------------------------------
  206. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.telefonica.handler.telefonicaTeltonikaHandlerApplicationTests], using SpringBootContextLoader
  207. 2017-12-13 15:31 [main] INFO o.s.t.c.s.AbstractContextLoader - Could not detect default resource locations for test class [com.telefonica.handler.telefonicaTeltonikaHandlerApplicationTests]: no resource found for suffixes {-context.xml, Context.groovy}.
  208. 2017-12-13 15:31 [main] INFO o.s.t.c.s.AnnotationConfigContextLoaderUtils - Could not detect default configuration classes for test class [com.telefonica.handler.telefonicaTeltonikaHandlerApplicationTests]: telefonicaTeltonikaHandlerApplicationTests does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
  209. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Found @SpringBootConfiguration com.telefonica.handler.telefonicaTeltonikaHandlerApplication for test class com.telefonica.handler.telefonicaTeltonikaHandlerApplicationTests
  210. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener]
  211. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Could not instantiate TestExecutionListener [org.springframework.test.context.web.ServletTestExecutionListener]. Specify custom listener classes or make the default listener classes (and their required dependencies) available. Offending class: [javax/servlet/ServletContext]
  212. 2017-12-13 15:31 [main] INFO o.s.b.t.c.SpringBootTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@46944ca9, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@22bac7bc, org.springframework.test.context.support.DirtiesContextTestExecutionListener@63798ca7, org.springframework.test.context.transaction.TransactionalTestExecutionListener@4612b856, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@22875539, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@5674e1f2, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@79c7532f, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@2a448449, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@32f232a5, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@43f82e78, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@e54303]
  213. Running com.telefonica.handler.TCPTest
  214.  
  215. . ____ _ __ _ _
  216. /\ / ___'_ __ _ _(_)_ __ __ _
  217. ( ( )___ | '_ | '_| | '_ / _` |
  218. \/ ___)| |_)| | | | | || (_| | ) ) ) )
  219. ' |____| .__|_| |_|_| |___, | / / / /
  220. =========|_|==============|___/=/_/_/_/
  221. :: Spring Boot :: (v1.5.9.RELEASE)
  222.  
  223. 2017-12-13 15:31 [main] INFO o.a.m.surefire.booter.ForkedBooter - Starting ForkedBooter v2.18.1 on MacBook-Pro-de-ricard.local with PID 17215 (started by lopes in /Users/lopes/Documents/workspace-sts-3.9.1.RELEASE/telefonicaTeltonikaHandler)
  224. 2017-12-13 15:31 [main] INFO o.a.m.surefire.booter.ForkedBooter - No active profile set, falling back to default profiles: default
  225. 2017-12-13 15:31 [main] INFO o.s.c.a.AnnotationConfigApplicationContext - Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@669513d8: startup date [Wed Dec 13 15:31:06 CET 2017]; root of context hierarchy
  226. 2017-12-13 15:31 [main] INFO o.s.i.config.IntegrationRegistrar - No bean named 'integrationHeaderChannelRegistry' has been explicitly defined. Therefore, a default DefaultHeaderChannelRegistry will be created.
  227. WARNING: An illegal reflective access operation has occurred
  228. SUREFIRE-859: WARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils$1 (file:/Users/lopes/.m2/repository/org/springframework/spring-core/4.3.13.RELEASE/spring-core-4.3.13.RELEASE.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
  229. WARNING: Please consider reporting this to the maintainers of org.springframework.cglib.core.ReflectUtils$1
  230. WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
  231. WARNING: All illegal access operations will be denied in a future release
  232. 2017-12-13 15:31 [main] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'errorChannel' has been explicitly defined. Therefore, a default PublishSubscribeChannel will be created.
  233. 2017-12-13 15:31 [main] INFO o.s.i.c.DefaultConfiguringBeanFactoryPostProcessor - No bean named 'taskScheduler' has been explicitly defined. Therefore, a default ThreadPoolTaskScheduler will be created.
  234. 2017-12-13 15:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$883d35a8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  235. 2017-12-13 15:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'integrationGlobalProperties' of type [org.springframework.beans.factory.config.PropertiesFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  236. 2017-12-13 15:31 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'integrationGlobalProperties' of type [java.util.Properties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  237. 2017-12-13 15:31 [main] INFO o.s.s.c.ThreadPoolTaskScheduler - Initializing ExecutorService 'taskScheduler'
  238. 2017-12-13 15:31 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Registering beans for JMX exposure on startup
  239. 2017-12-13 15:31 [main] INFO o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 0
  240. 2017-12-13 15:31 [main] INFO o.s.i.endpoint.EventDrivenConsumer - Adding {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
  241. 2017-12-13 15:31 [main] INFO o.s.i.c.PublishSubscribeChannel - Channel 'application.errorChannel' has 1 subscriber(s).
  242. 2017-12-13 15:31 [main] INFO o.s.i.endpoint.EventDrivenConsumer - started _org.springframework.integration.errorLogger
  243.  
  244. [INFO] --- maven-jar-plugin:2.6:jar (default-jar) @ my-project ----------------
  245. [INFO] Building jar: /Users/hello/my-project/my-project-1.0.0-SNAPSHOT.jar
  246. [INFO] ------------------------------------------------------------------------
  247. [INFO] BUILD SUCCESS
  248. [INFO] ------------------------------------------------------------------------
  249. [INFO] Total time: 2.052 s
  250. [INFO] Finished at: 2017-12-13T14:30:24+00:00
  251. [INFO] Final Memory: 29M/280M
  252. [INFO] ------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement