Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

H2 database is running in embedded (local) in-memory mode with database name cleverBusDB openHubDB StatuscolourRedtitleTODO

Code Block
db.driver=org.h2.Driver
db.url=jdbc:h2:mem:cleverBusDBopenHubDB
db.username=sa
db.password=

...

If there is needed to see records in in-memory database during CleverBus OpenHub running then there are the following possibilitespossibilities.

H2 console

H2 console is web browser based application that is configured on 8082 port.

Code Block
titleconfiguration in sp_dataSources.xml
        <bean id="h2WebServer" class="org.h2.tools.Server" factory-method="createWebServer" init-method="start"
              destroy-method="stop">
            <constructor-arg value="-web,-webAllowOthers,-webPort,8082"/>
        </bean>

Login page:

Status
colourRed
titleTODO

Select messages:

JDBC via TCP

...