java - ActiveMQ - JDBC 持久化 MySQL : ACTIVEMQ_MSGS is empty

标签 java mysql jdbc activemq

我正在使用 MySQL ( http://activemq.apache.org/jdbc-support.html) 实现持久性。 但是当我查看这张表时,它总是空的。

Image of MySQL Workbench

[activemq.log]

2015-12-17 15:16:57,966 | INFO  | Apache ActiveMQ 5.13.0 (localhost, ID:PTLSF07-63181-1450361138461-0:1) is shutting down | org.apache.activemq.broker.BrokerService | ActiveMQ ShutdownHook
2015-12-17 15:16:57,969 | INFO  | Connector openwire stopped | org.apache.activemq.broker.TransportConnector | ActiveMQ ShutdownHook
2015-12-17 15:16:57,971 | INFO  | Connector amqp stopped | org.apache.activemq.broker.TransportConnector | ActiveMQ ShutdownHook
2015-12-17 15:16:57,972 | INFO  | Connector stomp stopped | org.apache.activemq.broker.TransportConnector | ActiveMQ ShutdownHook
2015-12-17 15:16:57,974 | INFO  | Connector mqtt stopped | org.apache.activemq.broker.TransportConnector | ActiveMQ ShutdownHook
2015-12-17 15:16:57,974 | INFO  | socketQueue interrupted - stopping | org.apache.activemq.transport.tcp.TcpTransportServer | ActiveMQ Transport Server Thread Handler: mqtt://0.0.0.0:1883?maximumConnections=1000&wireFormat.maxFrameSize=104857600
2015-12-17 15:16:57,977 | ERROR | Could not accept connection : java.lang.InterruptedException | org.apache.activemq.broker.TransportConnector | ActiveMQ Transport Server Thread Handler: mqtt://0.0.0.0:1883?maximumConnections=1000&wireFormat.maxFrameSize=104857600
2015-12-17 15:16:57,989 | INFO  | Connector ws stopped | org.apache.activemq.broker.TransportConnector | ActiveMQ ShutdownHook
2015-12-17 15:16:57,994 | INFO  | PListStore:[C:\apache-activemq-5.13.0\bin\win64\..\..\data\localhost\tmp_storage] stopped | org.apache.activemq.store.kahadb.plist.PListStoreImpl | ActiveMQ ShutdownHook
2015-12-17 15:16:58,198 | INFO  | Apache ActiveMQ 5.13.0 (localhost, ID:PTLSF07-63181-1450361138461-0:1) uptime 11 minutes | org.apache.activemq.broker.BrokerService | ActiveMQ ShutdownHook
2015-12-17 15:16:58,199 | INFO  | Apache ActiveMQ 5.13.0 (localhost, ID:PTLSF07-63181-1450361138461-0:1) is shutdown | org.apache.activemq.broker.BrokerService | ActiveMQ ShutdownHook
2015-12-17 15:16:58,200 | INFO  | Closing org.apache.activemq.xbean.XBeanBrokerFactory$1@200669bf: startup date [Thu Dec 17 15:05:33 CET 2015]; root of context hierarchy | org.apache.activemq.xbean.XBeanBrokerFactory$1 | ActiveMQ ShutdownHook
2015-12-17 15:16:58,211 | INFO  | Destroying Spring FrameworkServlet 'dispatcher' | /admin | ActiveMQ ShutdownHook
2015-12-17 15:17:00,588 | INFO  | Refreshing org.apache.activemq.xbean.XBeanBrokerFactory$1@200669bf: startup date [Thu Dec 17 15:17:00 CET 2015]; root of context hierarchy | org.apache.activemq.xbean.XBeanBrokerFactory$1 | WrapperSimpleAppMain
2015-12-17 15:17:01,779 | INFO  | PListStore:[C:\apache-activemq-5.13.0\bin\win64\..\..\data\localhost\tmp_storage] started | org.apache.activemq.store.kahadb.plist.PListStoreImpl | WrapperSimpleAppMain
2015-12-17 15:17:01,810 | INFO  | Using Persistence Adapter: JDBCPersistenceAdapter(org.apache.commons.dbcp2.BasicDataSource@2311fe17) | org.apache.activemq.broker.BrokerService | WrapperSimpleAppMain
2015-12-17 15:17:02,196 | INFO  | Database adapter driver override recognized for : [mysql_connector_java] - adapter: class org.apache.activemq.store.jdbc.adapter.MySqlJDBCAdapter | org.apache.activemq.store.jdbc.JDBCPersistenceAdapter | WrapperSimpleAppMain

[activemq.xml]

<!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
    this work for additional information regarding copyright ownership.
    The ASF licenses this file to You under the Apache License, Version 2.0
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->
<!-- START SNIPPET: example -->
<beans
  xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd">

    <!-- Allows us to use system properties as variables in this configuration file -->
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <value>file:${activemq.conf}/credentials.properties</value>
        </property>
    </bean>

   <!-- Allows accessing the server log -->
    <bean id="logQuery" class="io.fabric8.insight.log.log4j.Log4jLogQuery"
          lazy-init="false" scope="singleton"
          init-method="start" destroy-method="stop">
    </bean>

    <!--
        The <broker> element is used to configure the ActiveMQ broker.
    -->
    <broker xmlns="http://activemq.apache.org/schema/core" brokerName="localhost" dataDirectory="${activemq.data}">

        <destinationPolicy>
            <policyMap>
              <policyEntries>
                <policyEntry topic=">" >
                    <!-- The constantPendingMessageLimitStrategy is used to prevent
                         slow topic consumers to block producers and affect other consumers
                         by limiting the number of messages that are retained
                         For more information, see:

                         http://activemq.apache.org/slow-consumer-handling.html

                    -->
                  <pendingMessageLimitStrategy>
                    <constantPendingMessageLimitStrategy limit="1000"/>
                  </pendingMessageLimitStrategy>
                </policyEntry>
              </policyEntries>
            </policyMap>
        </destinationPolicy>


        <!--
            The managementContext is used to configure how ActiveMQ is exposed in
            JMX. By default, ActiveMQ uses the MBean server that is started by
            the JVM. For more information, see:

            http://activemq.apache.org/jmx.html
        -->
        <managementContext>
            <managementContext createConnector="false"/>
        </managementContext>

        <!--
            Configure message persistence for the broker.
            For more information, see:

            http://activemq.apache.org/persistence.html
        -->

        <persistenceAdapter>
            <jdbcPersistenceAdapter dataDirectory="${activemq.base}/data" dataSource="#mysql-ds"/> 
        </persistenceAdapter>

<!-- 
        <persistenceFactory>
            <journalPersistenceAdapterFactory 
                journalLogFiles="5" 
                dataDirectory="${activemq.base}/data"
                dataSource="#mysql-ds"/>
        </persistenceFactory>
-->

          <!--
            The systemUsage controls the maximum amount of space the broker will
            use before disabling caching and/or slowing down producers. For more information, see:
            http://activemq.apache.org/producer-flow-control.html
          -->
          <systemUsage>
            <systemUsage>
                <memoryUsage>
                    <memoryUsage percentOfJvmHeap="70" />
                </memoryUsage>
                <storeUsage>
                    <storeUsage limit="10 gb"/>
                </storeUsage>
                <tempUsage>
                    <tempUsage limit="5 gb"/>
                </tempUsage>
            </systemUsage>
        </systemUsage>

        <!--
            The transport connectors expose ActiveMQ over a given protocol to
            clients and other brokers. For more information, see:

            http://activemq.apache.org/configuring-transports.html
        -->
        <transportConnectors>
            <!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB -->
            <transportConnector name="openwire" uri="tcp://0.0.0.0:61616?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="amqp" uri="amqp://0.0.0.0:5672?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="stomp" uri="stomp://0.0.0.0:61613?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="mqtt" uri="mqtt://0.0.0.0:1883?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
            <transportConnector name="ws" uri="ws://0.0.0.0:61614?maximumConnections=1000&amp;wireFormat.maxFrameSize=104857600"/>
        </transportConnectors>

        <!-- destroy the spring context on shutdown to stop jetty -->
        <shutdownHooks>
            <bean xmlns="http://www.springframework.org/schema/beans" class="org.apache.activemq.hooks.SpringContextHook" />
        </shutdownHooks>

    </broker>

    <!-- MySql DataSource Setup -->
    <bean id="mysql-ds" class="org.apache.commons.dbcp2.BasicDataSource"
    destroy-method="close">
         <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
         <property name="url"
                value="jdbc:mysql://localhost/activemq?relaxAutoCommit=true"/>
         <property name="username" value="user"/>
         <property name="password" value="pass"/>
         <property name="poolPreparedStatements" value="true"/>
    </bean>

    <!--
        Enable web consoles, REST and Ajax APIs and demos
        The web consoles requires by default login, you can disable this in the jetty.xml file

        Take a look at ${ACTIVEMQ_HOME}/conf/jetty.xml for more details
    -->
    <import resource="jetty.xml"/>

</beans>
<!-- END SNIPPET: example -->

你能帮我解决这个问题吗?

谢谢,

最佳答案

要使持久适配器正常工作,请删除 dataDirectory来自 <broker> & <jdbcPersistenceAdapter>标签。这样 kahaDb 就不会被初始化。

关于java - ActiveMQ - JDBC 持久化 MySQL : ACTIVEMQ_MSGS is empty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34337141/

相关文章:

Java 循环输入流直到 boolean = false

php - 按交货时间订购产品列表 - 条件如此之多,似乎太复杂

mysql - 在破折号上触发拆分

mysql - 数据库设计 SQL 和转换表

java - 插入枚举值时如何修复 "Can' t 推断用于枚举实例的 SQL 类型”错误?

oracle - Oracle JDBC 驱动程序版本 11.2.0.2.0 中的夏令时处理是否中断?

java - spring boot中生成密码加密的excel文件时遇到 no such file or directory 错误

java - Hortonworks 架构注册表 + Nifi + Java : Deserialize Nifi Record

JButton 选择/ActionPerformed 的 Java Swing 问题

Java ResultSet、SetObject 与 SetString/SetDate/等