Exploratory dive into DataNucleus for SpringData/SpringCache storage via JPA to Cassandra and MongoDB.
Go to file
2021-07-06 14:53:26 -04:00
src/main Fixed ehCache issue. Still having issues finding the persistence.xml 2021-07-06 11:58:44 -04:00
.gitignore More working, mid Infinispan/EhCache change. 2017-06-22 09:26:44 -04:00
.tool-versions Update dependencies, not quite fixed (WIP). 2021-07-06 10:32:24 -04:00
application.properties stopping point 2018-03-25 19:42:06 -04:00
applicationContext.xml stopping point 2018-03-25 19:42:06 -04:00
BaseIntegrationTest.java stopping point 2018-03-25 19:42:06 -04:00
CacheProperties.java stopping point 2018-03-25 19:42:06 -04:00
CassandraConfiguration.java stopping point 2018-03-25 19:42:06 -04:00
CassandraTemplateIntegrationTest.java stopping point 2018-03-25 19:42:06 -04:00
CqlTemplateIntegrationTest.java stopping point 2018-03-25 19:42:06 -04:00
crud-jpa-tutorial.iml Cleanup, trying to get to a working known state again. 2018-04-11 23:09:14 -04:00
CRUDTest.java stopping point 2018-03-25 19:42:06 -04:00
log4j.properties Fixed ehCache issue. Still having issues finding the persistence.xml 2021-07-06 11:58:44 -04:00
NOTES Adding notes file with log from last run. 2021-07-06 14:53:26 -04:00
pom.xml Fix location of persistence.xml file. 2021-07-06 14:50:23 -04:00
README Fixed ehCache issue. Still having issues finding the persistence.xml 2021-07-06 11:58:44 -04:00
RedisCacheConfiguration.java stopping point 2018-03-25 19:42:06 -04:00
TESTS stopping point 2018-03-25 19:42:06 -04:00

docker run --name mongodb -p 27017:27017 -d mongo --storageEngine wiredTiger
docker run --name castrato -p 9042:9042 -p 9162:9162 -p 7000:7000 -e CASSANDRA_START_RPC=true -d stratio/cassandra-lucene-index:3.10.0

drop table books; drop table products; drop table inventory; drop table magazines; desc tables;

mvn -U clean compile -Dmaven.compiler.showDeprecation=true -Dmaven.compiler.showWarnings=true

https://www.one-tab.com/page/K4XlsjF2TyugqYE_8ORqxg


docker exec -ti castrato /opt/sds/cassandra/bin/cqlsh
CREATE KEYSPACE IF NOT EXISTS kc WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1' };


https://apple.stackexchange.com/questions/215919/enable-multicast-on-mac
ifconfig -a
sudo route -nv add -net 239.9.9.9 -interface en0
netstat -nr | grep 239.9.9.9
ping -t 1 -c 2 239.9.9.9
sudo tcpdump -vvv -ni en0 host 239.9.9.9
sudo route -v delete -inet 239.9.9.9

mvn clean versions:use-latest-versions scm:checkin deploy -Dmessage="update versions" -DperformRelease=true
http://www.mojohaus.org/versions-maven-plugin/index.html

mvn exec:java -D"exec.mainClass"="com.example.crud.Main"
mvn exec:java