新增lombok支持,监听队列命名
This commit is contained in:
parent
4910055430
commit
6ce2d80599
17
pom.xml
17
pom.xml
|
|
@ -19,7 +19,8 @@
|
|||
<mybatis-spring.version>1.3.2</mybatis-spring.version>
|
||||
<log4j.version>1.2.17</log4j.version>
|
||||
<activemq.version>5.15.4</activemq.version>
|
||||
<gson.version>2.3</gson.version>
|
||||
<lombok.version>1.18.6</lombok.version>
|
||||
<fastjson.version>1.2.56</fastjson.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
|
@ -116,8 +117,6 @@
|
|||
<version>${mybatis.version}</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
|
||||
<!--mybatis spring 插件 -->
|
||||
<dependency>
|
||||
<groupId>org.mybatis</groupId>
|
||||
|
|
@ -145,6 +144,12 @@
|
|||
<version>${log4j.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
<version>${lombok.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- apache 支持包 -->
|
||||
|
||||
<dependency>
|
||||
|
|
@ -166,9 +171,9 @@
|
|||
|
||||
<!-- json 解析器 -->
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<version>${gson.version}</version>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>fastjson</artifactId>
|
||||
<version>${fastjson.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
<bean id="dnkxQueueDestination" class="org.apache.activemq.command.ActiveMQQueue">
|
||||
<!-- 设置消息队列的名字 -->
|
||||
<constructor-arg>
|
||||
<value>dnkxmq</value>
|
||||
<value>ifishDataMq</value>
|
||||
</constructor-arg>
|
||||
</bean>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue