Replies: 1 comment
-
Hi, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
First of all thanks a lot for this great project and the great work you put into it!
I looked into the Getting Started section of the documentation and followed the link at the end of the page:
The full code for the Hello World example is on GitHub.
In my opinion - for a hello world - it is too complicated to execute the example and simply get started. I cannot find instructions how to actually run only the hello world example. How is it meant to run ?
Here is what I did:
tron$ pwd
/home/rpx/Downloads
tron$ git clone https://github.com/eclipse-store/store.git
tron$ cd store/examples/helloworld
Extended the pom.xml file like so:
`
`
tron$ mvn clean install
Ran the program:
tron$ java -jar target/examples-helloworld-1.2.0-SNAPSHOT-jar-with-dependencies.jar
[main] INFO org.eclipse.store.storage.embedded.types.EmbeddedStorageFoundation - Creating embedded storage manager
[main] INFO org.eclipse.serializer.persistence.types.PersistenceTypeHandlerManager - Initializing type handler manager
[main] INFO org.eclipse.serializer.persistence.types.PersistenceTypeHandlerManager - Type dictionary is empty or not existing. Initializing type handler manager with a new default type dictionary
[main] INFO org.eclipse.store.storage.embedded.types.EmbeddedStorageManager - Starting embedded storage manager
[main] INFO org.eclipse.store.storage.types.StorageSystem - Starting storage system
[main] INFO org.eclipse.store.storage.types.StorageStructureValidator - Storage structure validated successfully.
[main] INFO org.eclipse.serializer.persistence.types.PersistenceTypeHandlerManager - Initializing type handler manager
[main] INFO org.eclipse.store.storage.embedded.types.EmbeddedStorageManager - Embedded storage manager initialized
Root: null
[main] INFO org.eclipse.serializer.persistence.types.PersistenceTypeHandlerManager - Initializing type handler manager
tron$ java -jar target/examples-helloworld-1.2.0-SNAPSHOT-jar-with-dependencies.jar
[main] INFO org.eclipse.store.storage.embedded.types.EmbeddedStorageFoundation - Creating embedded storage manager
[main] INFO org.eclipse.serializer.persistence.types.PersistenceTypeHandlerManager - Initializing type handler manager
[main] INFO org.eclipse.store.storage.embedded.types.EmbeddedStorageManager - Starting embedded storage manager
[main] INFO org.eclipse.store.storage.types.StorageSystem - Starting storage system
[main] INFO org.eclipse.store.storage.types.StorageStructureValidator - Storage structure validated successfully.
[main] INFO org.eclipse.serializer.persistence.types.PersistenceTypeHandlerManager - Initializing type handler manager
[main] INFO org.eclipse.store.storage.embedded.types.EmbeddedStorageManager - Embedded storage manager initialized
Root: Hello World! @ Tue Feb 06 10:27:05 CET 2024
[main] INFO org.eclipse.serializer.persistence.types.PersistenceTypeHandlerManager - Initializing type handler manager
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions