GithubHelp home page GithubHelp logo

graphaware / neo4j-uuid Goto Github PK

View Code? Open in Web Editor NEW
102.0 34.0 22.0 551 KB

GraphAware Runtime Module that assigns a UUID to all nodes (and relationships) in the graph transparently

Java 100.00%
neo4j java neo4j-graphaware-framework

neo4j-uuid's Introduction

GraphAware Neo4j UUID - RETIRED

GraphAware Neo4j UUID Has Been Retired

As of May 2021, this repository has been retired.

GraphAware UUID is a simple library that transparently assigns a UUID to newly created nodes and relationships in the graph and makes sure nobody can (accidentally or intentionally) change or delete them.

Community vs Enterprise

This open-source (GPLv3) version of the library is compatible with Neo4j Community Edition only. It will not work with Neo4j Enterprise Edition, which is a proprietary and commercial software product of Neo4j, Inc.

GraphAware offers a paid Enterprise version of the GraphAware Framework to licensed users of Neo4j Enterprise Edition. Please get in touch to receive access.

Getting the Software

You will need the GraphAware Neo4j Framework and GraphAware Neo4j UUID .jar files (both of which you can download here) dropped into the plugins directory of your Neo4j installation. After adding a few lines of config (read on) and restarting Neo4j, the module will do its magic.

Releases

Releases are synced to Maven Central repository. When using Maven for dependency management, include the following dependency in your pom.xml and change version number to match the required version.

<dependencies>
    ...
    <dependency>
        <groupId>com.graphaware.neo4j</groupId>
        <artifactId>uuid</artifactId>
        <version>A.B.C.D.E</version>
    </dependency>
    ...
</dependencies>

Snapshots

To use the latest development version, just clone this repository, run mvn clean install and change the version in the dependency above to A.B.C.D.E-SNAPSHOT.

Note on Versioning Scheme

The version number has two parts. The first four numbers indicate compatibility with Neo4j GraphAware Framework. The last number is the version of the UUID library. For example, version 4.0.8.58.20 is version 20 of the UUID library compatible with GraphAware Neo4j Framework 4.0.8.58.

Setup and Configuration

Create or edit conf/graphaware.conf to register the UUID module:

#UIDM becomes the module ID:
com.graphaware.module.neo4j.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

#optional, default is uuid:
com.graphaware.module.neo4j.UIDM.uuidProperty=uuid

#optional, default is false:
com.graphaware.module.neo4j.UIDM.stripHyphens=false

#optional, default is all nodes:
com.graphaware.module.neo4j.UIDM.node=hasLabel('Label1') || hasLabel('Label2')

#optional, default is no relationships:
com.graphaware.module.neo4j.UIDM.relationship=isType('Type1')

Note that "UIDM" becomes the module ID.

com.graphaware.module.neo4j.UIDM.uuidProperty is the property name that will be used to store the assigned UUID on nodes and relationships. The default is "uuid".

com.graphaware.module.neo4j.UIDM.stripHyphens is the property name that controls hyphen existence. If its true created UUID will be free from hyphens.

com.graphaware.module.neo4j.UIDM.node specifies either a fully qualified class name of NodeInclusionPolicy implementation, or a Spring Expression Language expression determining, which nodes to assign a UUID to. The default is to assign the UUID property to every node which isn't internal to the framework.

com.graphaware.module.neo4j.UIDM.relationship specifies either a fully qualified class name of RelationshipInclusionPolicy implementation, or a Spring Expression Language expression determining, which relationships to assign a UUID to. The default is not to assign the UUID property to any relationship. If you want to assign UUID to all relationship, please use com.graphaware.module.neo4j.UIDM.relationship=com.graphaware.runtime.policy.all.IncludeAllBusinessRelationships

Using GraphAware UUID

Apart from the configuration described above, you must create unique constraints (or at least indices) in the database.

The module will assign a UUID to nodes and relationships configured, and will prevent modifications to the UUID or deletion of the UUID property from these nodes/relationships by not allowing the transaction to commit.

Note: If you create a node and return it immediately, its contents will not reflect changes performed by transaction event handlers such as this one -- thus the UUID will not be available. A separate call must be made to get the UUID, for example:

CREATE (n:User {name: "Alice"}) RETURN id(n)
---
// Later, using saved ID from above:
MATCH (n) WHERE id(n) = 123 RETURN n.uuid

Specifying the Generator Through Configuration

By default, the com.graphaware.common.uuid.EaioUuidGenerator is used to generate the underlying UUID. Any generator implementation can be used, be it out of the box or your own custom code, by modifying the conf/graphaware.conf. The following example configures the UUID module to make use of the JavaUtilUUIDGenerator:

com.graphaware.module.neo4j.UUID.1=com.graphaware.module.uuid.UuidBootstrapper
com.graphaware.module.UUID.neo4j.uuidGeneratorClass=com.graphaware.module.uuid.generator.JavaUtilUUIDGenerator

Please see the com.graphaware.common.uuid.UuidGenerator interface and the com.graphaware.module.uuid.generator package for more information and examples of how to implement your own generator.

Immutability

This module ensures that all assigned UUIDs on nodes and relationships are immutable, meaning they cannot be deleted nor changed. In some scenarios, developers might want to disable the immutability with the following configuration setting :

com.graphaware.module.neo4j.UUID.immutable=false

We only allow this setting for development purposes or developers having an specific need and we fully discourage the use of this setting.

License

Copyright (c) 2020 GraphAware

GraphAware is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

neo4j-uuid's People

Contributors

0xflotus avatar bachmanm avatar cooperka avatar eeqk avatar ikwattro avatar luanne avatar michal-trnka avatar omarlarus avatar sagdelen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

neo4j-uuid's Issues

How to get the last uuid

Hi guys,

I need to know how to get the uuid of the last created node.

For instance, consider this cypher query which doesn't work as expected:

MATCH (source:User {id:1}),(target:User {id:2})
CREATE (source)-[rel:FOLLOWS]->(target)
Return rel.uuid

Is there a way to have the uuid of the relationship?

Thanks in advance!
Lucas.

UUID doenst seems to start on neo4j 3.0.1-enterprise

Hi

I just updated my neo4j, and it looks like nothing happen when I start the server with the plugin in place:

I have downloaded :
graphaware-server-community-all-3.0.0.38.jar (this is what I got from downloading the framework)
graphaware-uuid-3.0.1.38.8.jar (I had to download this project and run mvn clean install since the graphaware website has only version 2.x in it)

I placed both of them in the neo4j plugin directory
and i have updated my neo4j.conf :

com.graphaware.runtime.enabled=true

#UIDM becomes the module ID:
com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

#optional, default is uuid:
com.graphaware.module.UIDM.uuidProperty=uuid

#optional, default is no relationships:
com.graphaware.module.UIDM.relationship=com.graphaware.runtime.policy.all.IncludeAllBusinessRelationships

#optional, default is uuidIndex
com.graphaware.module.UIDM.uuidIndex=idIndex

#optional, default is uuidRelIndex
com.graphaware.module.UIDM.uuidRelationshipIndex=idRelIndex

anyIdeas?
Im running neo4j 3.0.1 enterprise edition

Build failing on windows

Something about paths to the config files is broken on windows, culprit likely to be NeoTestServer

Exception in thread "GraphAware Starter" when initializing UIDM module for the first time

Im trying to use GraphAware Neo4j UUID plugin in the following environment:

  • OS: Ubuntu 18.04
  • Neo4J : neo4j-community-3.5.9
  • Java:
    openjdk version "11.0.8" 2020-07-14
    OpenJDK Runtime Environment (build 11.0.8+10-post-Ubuntu-0ubuntu118.04.1)
    OpenJDK 64-Bit Server VM (build 11.0.8+10-post-Ubuntu-0ubuntu118.04.1, mixed mode, sharing)

I've pasted these JARs to the plugins Neo4j folder:

  • graphaware-server-all-3.5.14.55.jar
  • uuid-3.5.14.55.19.jar

After runing bin\neo4j console I'm getting this error:

2020-09-24 05:39:50.217+0000 INFO  GraphAware Runtime enabled, bootstrapping...
2020-09-24 05:39:50.251+0000 INFO  Bootstrapping module with order 1, ID UIDM, using com.graphaware.module.uuid.UuidBootstrapper
2020-09-24 05:39:50.345+0000 INFO  uuidProperty set to uuid
2020-09-24 05:39:50.345+0000 INFO  stripHyphens set to false
2020-09-24 05:39:50.354+0000 INFO  Registering module UIDM with GraphAware Runtime.
2020-09-24 05:39:50.357+0000 INFO  GraphAware Runtime bootstrapped, starting the Runtime...
2020-09-24 05:39:50.475+0000 INFO  Starting GraphAware...
2020-09-24 05:39:50.482+0000 INFO  Loading module metadata...
2020-09-24 05:39:50.483+0000 INFO  Loading metadata for module UIDM
2020-09-24 05:39:50.569+0000 INFO  Module UIDM seems to have been registered for the first time.
2020-09-24 05:39:50.569+0000 INFO  Module UIDM seems to have been registered for the first time, will try to initialize...
2020-09-24 05:39:50.574+0000 INFO  InitializeUntil set to 9223372036854775807 and it is 1600925990574. Will initialize.
2020-09-24 05:39:50.712+0000 WARN  Waited for over 100ms but no input arrived. Still expecting more input. 
Exception in thread "GraphAware Starter" java.lang.NoClassDefFoundError: org/omg/CORBA/portable/IDLEntity
	at java.base/java.lang.ClassLoader.defineClass1(Native Method)
	at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1017)
	at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:174)
	at java.base/jdk.internal.loader.BuiltinClassLoader.defineClass(BuiltinClassLoader.java:800)
	at java.base/jdk.internal.loader.BuiltinClassLoader.findClassOnClassPathOrNull(BuiltinClassLoader.java:698)
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClassOrNull(BuiltinClassLoader.java:621)
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:579)
	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
	at com.graphaware.common.uuid.EaioUuidGenerator.generateUuid(EaioUuidGenerator.java:31)
	at com.graphaware.module.uuid.UuidModule.assignNewUuid(UuidModule.java:192)
	at com.graphaware.module.uuid.UuidModule.assignUuid(UuidModule.java:183)
	at com.graphaware.module.uuid.UuidModule.lambda$initialize$0(UuidModule.java:107)
	at com.graphaware.tx.executor.batch.IterableInputBatchTransactionExecutor.lambda$processQueue$1(IterableInputBatchTransactionExecutor.java:115)
	at com.graphaware.tx.executor.single.SimpleTransactionExecutor.doExecuteInTransaction(SimpleTransactionExecutor.java:69)
	at com.graphaware.tx.executor.single.SimpleTransactionExecutor.executeInTransaction(SimpleTransactionExecutor.java:58)
	at com.graphaware.tx.executor.batch.IterableInputBatchTransactionExecutor.processQueue(IterableInputBatchTransactionExecutor.java:103)
	at com.graphaware.tx.executor.batch.IterableInputBatchTransactionExecutor.doExecute(IterableInputBatchTransactionExecutor.java:76)
	at com.graphaware.tx.executor.batch.DisposableBatchTransactionExecutor.execute(DisposableBatchTransactionExecutor.java:35)
	at com.graphaware.module.uuid.UuidModule.initialize(UuidModule.java:110)
	at com.graphaware.runtime.manager.ProductionTxDrivenModuleManager.initialize(ProductionTxDrivenModuleManager.java:57)
	at com.graphaware.runtime.manager.BaseTxDrivenModuleManager.initializeIfAllowed(BaseTxDrivenModuleManager.java:128)
	at com.graphaware.runtime.manager.BaseTxDrivenModuleManager.handleNoMetadata(BaseTxDrivenModuleManager.java:72)
	at com.graphaware.runtime.manager.BaseTxDrivenModuleManager.handleNoMetadata(BaseTxDrivenModuleManager.java:39)
	at com.graphaware.runtime.manager.BaseModuleManager.loadMetadata(BaseModuleManager.java:143)
	at com.graphaware.runtime.manager.BaseModuleManager.loadMetadata(BaseModuleManager.java:125)
	at com.graphaware.runtime.TxDrivenRuntime.loadMetadata(TxDrivenRuntime.java:130)
	at com.graphaware.runtime.ProductionRuntime.loadMetadata(ProductionRuntime.java:80)
	at com.graphaware.runtime.BaseGraphAwareRuntime.startModules(BaseGraphAwareRuntime.java:154)
	at com.graphaware.runtime.TxDrivenRuntime.startModules(TxDrivenRuntime.java:146)
	at com.graphaware.runtime.ProductionRuntime.startModules(ProductionRuntime.java:70)
	at com.graphaware.runtime.BaseGraphAwareRuntime.start(BaseGraphAwareRuntime.java:134)
	at com.graphaware.runtime.bootstrap.RuntimeKernelExtension.lambda$start$0(RuntimeKernelExtension.java:117)
	at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: java.lang.ClassNotFoundException: org.omg.CORBA.portable.IDLEntity
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581)
	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
	... 34 more

Has someone pls any idea? I've followed the steps in the Readme Setup section. Thx!

A lot of warning in debug log

Hi

With neo4j version 3.0.X The plugin works just fine.

I have now updated Neo4j to version 3.1.0 so I have downloaded the latest neo4j uuid and framework:

wget http://products.graphaware.com/download/framework-server-community/latest -O graphaware-server-community.jar
wget http://products.graphaware.com/download/uuid/latest -O graphaware-uuid.jar

After installing and using this config:

com.graphaware.runtime.enabled=true

#UIDM becomes the module ID:
com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

#optional, default is uuid:
com.graphaware.module.UIDM.uuidProperty=id

#optional, default is no relationships:
com.graphaware.module.UIDM.relationship=com.graphaware.runtime.policy.all.IncludeAllBusinessRelationships

#optional, default is uuidIndex
com.graphaware.module.UIDM.uuidIndex=idIndex

#optional, default is uuidRelIndex
com.graphaware.module.UIDM.uuidRelationshipIndex=idRelIndex

Im getting a lot of warrning in the debug.log but it looks like the plugin is working fine.
(Sorry for the big Log)

2017-01-16 20:12:16.523+0000 INFO  [c.g.m.u.UuidBootstrapper] uuidProperty set to id
2017-01-16 20:12:16.524+0000 INFO  [c.g.m.u.UuidBootstrapper] uuidIndex set to idIndex
2017-01-16 20:12:16.524+0000 INFO  [c.g.m.u.UuidBootstrapper] uuidRelationshipIndex set to idRelIndex
2017-01-16 20:12:16.529+0000 INFO  [c.g.r.BaseGraphAwareRuntime] Registering module UIDM with GraphAware Runtime.
2017-01-16 20:12:16.931+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.apache.commons.logging.impl.AvalonLogger` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/avalon/framework/logger/Logger
2017-01-16 20:12:16.933+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.apache.commons.logging.impl.Log4JLogger` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/log4j/Category
2017-01-16 20:12:16.936+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.apache.commons.logging.impl.LogKitLogger` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/log/Logger
2017-01-16 20:12:17.171+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.core.type.filter.AspectJTypeFilter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/World
2017-01-16 20:12:17.263+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.cglib.transform.AbstractProcessTask` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tools/ant/Task
2017-01-16 20:12:17.264+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.cglib.transform.AbstractTransformTask` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tools/ant/Task
2017-01-16 20:12:17.324+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.client.OkHttpClientHttpRequest` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/squareup/okhttp/MediaType
2017-01-16 20:12:17.325+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.client.HttpComponentsAsyncClientHttpRequestFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/http/nio/client/HttpAsyncClient
2017-01-16 20:12:17.330+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.client.OkHttpClientHttpRequest$OkHttpListenableFuture` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/squareup/okhttp/Callback
2017-01-16 20:12:17.331+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.client.OkHttpClientHttpRequest$OkHttpListenableFuture$1` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/squareup/okhttp/Callback
2017-01-16 20:12:17.345+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/rometools/rome/io/FeedException
2017-01-16 20:12:17.345+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.feed.AtomFeedHttpMessageConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/rometools/rome/io/FeedException
2017-01-16 20:12:17.345+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.feed.RssChannelHttpMessageConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/rometools/rome/io/FeedException
2017-01-16 20:12:17.348+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.xml.MarshallingHttpMessageConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/springframework/oxm/UnmarshallingFailureException
2017-01-16 20:12:17.354+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.protobuf.ExtensionRegistryInitializer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/google/protobuf/ExtensionRegistry
2017-01-16 20:12:17.354+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.protobuf.ProtobufHttpMessageConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/google/protobuf/ExtensionRegistryLite
2017-01-16 20:12:17.355+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.json.GsonHttpMessageConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/google/gson/JsonIOException
2017-01-16 20:12:17.355+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.json.GsonBuilderUtils` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/google/gson/GsonBuilder
2017-01-16 20:12:17.356+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.json.GsonFactoryBean` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/google/gson/Gson
2017-01-16 20:12:17.367+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.json.GsonBuilderUtils$Base64TypeAdapter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/google/gson/JsonSerializer
2017-01-16 20:12:17.367+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.http.converter.json.Jackson2ObjectMapperBuilder$XmlObjectMapperInitializer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/fasterxml/jackson/dataformat/xml/XmlMapper
2017-01-16 20:12:17.405+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.jsf.DecoratingNavigationHandler` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/faces/application/NavigationHandler
2017-01-16 20:12:17.406+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.jsf.DelegatingNavigationHandlerProxy` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/faces/application/NavigationHandler
2017-01-16 20:12:17.407+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.jsf.FacesContextUtils` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/faces/context/FacesContext
2017-01-16 20:12:17.407+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.jsf.DelegatingPhaseListenerMulticaster` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/faces/event/PhaseListener
2017-01-16 20:12:17.408+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.jsf.el.WebApplicationContextFacesELResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/el/ELResolver
2017-01-16 20:12:17.409+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.jsf.el.SpringBeanFacesELResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/el/ELResolver
2017-01-16 20:12:17.432+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.bind.support.SpringWebConstraintValidatorFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/ConstraintValidatorFactory
2017-01-16 20:12:17.438+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.context.request.FacesRequestAttributes$PortletSessionAccessor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/faces/context/ExternalContext
2017-01-16 20:12:17.440+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.context.request.FacesRequestAttributes` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/faces/context/ExternalContext
2017-01-16 20:12:17.458+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.context.support.WebApplicationContextUtils$FacesDependencyRegistrar$2` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/faces/context/ExternalContext
2017-01-16 20:12:17.459+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.context.support.WebApplicationContextUtils$FacesDependencyRegistrar$1` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/faces/context/FacesContext
2017-01-16 20:12:17.474+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.context.support.GroovyWebApplicationContext` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObject
2017-01-16 20:12:17.492+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.util.TagUtils` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/Tag
2017-01-16 20:12:17.521+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.multipart.commons.CommonsFileUploadSupport` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/commons/fileupload/FileItemFactory
2017-01-16 20:12:17.523+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.multipart.commons.CommonsMultipartResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/commons/fileupload/FileItemFactory
2017-01-16 20:12:17.524+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.multipart.commons.CommonsMultipartFile` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/commons/fileupload/FileUploadException
2017-01-16 20:12:17.551+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.remoting.caucho.HessianServiceExporter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/caucho/hessian/io/HessianDebugInputStream
2017-01-16 20:12:17.551+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.remoting.caucho.HessianExporter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/caucho/hessian/io/HessianDebugInputStream
2017-01-16 20:12:17.553+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.remoting.caucho.BurlapClientInterceptor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/caucho/burlap/client/BurlapProxyFactory
2017-01-16 20:12:17.553+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.remoting.caucho.SimpleHessianServiceExporter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/caucho/hessian/io/HessianDebugInputStream
2017-01-16 20:12:17.554+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.remoting.caucho.HessianClientInterceptor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/caucho/hessian/client/HessianProxyFactory
2017-01-16 20:12:17.560+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.target.CommonsPool2TargetSource` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/commons/pool2/PooledObjectFactory
2017-01-16 20:12:17.562+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.target.CommonsPoolTargetSource` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/commons/pool/PoolableObjectFactory
2017-01-16 20:12:17.587+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/commons/pool2/PooledObjectFactory
2017-01-16 20:12:17.592+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.RuntimeTestWalker$TargetInstanceOfResidueTestVisitor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/ast/ITestVisitor
2017-01-16 20:12:17.593+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/ProceedingJoinPoint
2017-01-16 20:12:17.593+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.RuntimeTestWalker$TestVisitorAdapter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/ast/ITestVisitor
2017-01-16 20:12:17.594+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJExpressionPointcut$BeanNamePointcutDesignatorHandler` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/tools/PointcutDesignatorHandler
2017-01-16 20:12:17.596+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJExpressionPointcut$DefensiveShadowMatch` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/tools/ShadowMatch
2017-01-16 20:12:17.597+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.RuntimeTestWalker$ThisInstanceOfResidueTestVisitor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/ast/ITestVisitor
2017-01-16 20:12:17.598+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint$SourceLocationImpl` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/reflect/SourceLocation
2017-01-16 20:12:17.598+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJWeaverMessageHandler` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/bridge/IMessageHandler
2017-01-16 20:12:17.599+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJAroundAdvice` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/JoinPoint
2017-01-16 20:12:17.600+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJAfterAdvice` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/JoinPoint
2017-01-16 20:12:17.602+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJExpressionPointcut$BeanNameContextMatcher` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/tools/ContextBasedMatcher
2017-01-16 20:12:17.602+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJMethodBeforeAdvice` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/JoinPoint
2017-01-16 20:12:17.603+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJAfterThrowingAdvice` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/JoinPoint
2017-01-16 20:12:17.603+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint$MethodSignatureImpl` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/reflect/MethodSignature
2017-01-16 20:12:17.604+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.RuntimeTestWalker$SubtypeSensitiveVarTypeTestVisitor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/ast/ITestVisitor
2017-01-16 20:12:17.605+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJAfterReturningAdvice` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/JoinPoint
2017-01-16 20:12:17.606+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.RuntimeTestWalker$InstanceOfResidueTestVisitor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/ast/ITestVisitor
2017-01-16 20:12:17.606+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AbstractAspectJAdvice` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/JoinPoint
2017-01-16 20:12:17.608+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.AspectJExpressionPointcut` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/weaver/reflect/ReflectionWorld$ReflectionWorldException
2017-01-16 20:12:17.609+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator$PartiallyComparableAdvisorHolder` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/util/PartialOrder$PartialComparable
2017-01-16 20:12:17.616+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.aspectj.annotation.AspectMetadata` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/aspectj/lang/reflect/AjType
2017-01-16 20:12:17.631+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.aop.interceptor.JamonPerformanceMonitorInterceptor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/jamonapi/MonKey
2017-01-16 20:12:17.708+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.access.el.SpringBeanELResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/el/ELResolver
2017-01-16 20:12:17.709+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.access.el.SimpleSpringBeanELResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/el/ELResolver
2017-01-16 20:12:17.729+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.support.DefaultListableBeanFactory$DependencyProvider` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/inject/Provider
2017-01-16 20:12:17.736+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.config.YamlProcessor$StrictMapAppenderConstructor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/yaml/snakeyaml/constructor/Constructor
2017-01-16 20:12:17.737+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.config.YamlProcessor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/yaml/snakeyaml/reader/UnicodeReader
2017-01-16 20:12:17.742+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.config.YamlMapFactoryBean` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/yaml/snakeyaml/reader/UnicodeReader
2017-01-16 20:12:17.747+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.config.ProviderCreatingFactoryBean$TargetBeanProvider` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/inject/Provider
2017-01-16 20:12:17.749+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.config.ProviderCreatingFactoryBean` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/inject/Provider
2017-01-16 20:12:17.750+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.config.YamlPropertiesFactoryBean` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/yaml/snakeyaml/reader/UnicodeReader
2017-01-16 20:12:17.767+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyBeanDefinitionWrapper` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObjectSupport
2017-01-16 20:12:17.768+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$2` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/Binding
2017-01-16 20:12:17.769+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyDynamicElementReader$_invokeMethod_closure1` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/codehaus/groovy/runtime/GeneratedClosure
2017-01-16 20:12:17.769+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$GroovyRuntimeBeanReference` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObject
2017-01-16 20:12:17.770+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyDynamicElementReader` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObjectSupport
2017-01-16 20:12:17.771+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$3` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObjectSupport
2017-01-16 20:12:17.771+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$1` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/Closure
2017-01-16 20:12:17.772+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$GroovyRuntimeBeanReference$GroovyPropertyValue` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObjectSupport
2017-01-16 20:12:17.772+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObject
2017-01-16 20:12:17.800+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.ejb.access.SimpleRemoteSlsbInvokerInterceptor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/ejb/EJBObject
2017-01-16 20:12:17.801+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.ejb.access.LocalSlsbInvokerInterceptor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/ejb/EJBLocalObject
2017-01-16 20:12:17.801+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.ejb.access.AbstractRemoteSlsbInvokerInterceptor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/ejb/EJBObject
2017-01-16 20:12:17.802+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.ejb.interceptor.SpringBeanAutowiringInterceptor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/ejb/EJBException
2017-01-16 20:12:17.809+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.number.money.CurrencyUnitFormatter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/money/CurrencyUnit
2017-01-16 20:12:17.810+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.number.money.Jsr354NumberFormatAnnotationFormatterFactory$NumberDecoratingFormatter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/money/MonetaryAmount
2017-01-16 20:12:17.810+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.number.money.Jsr354NumberFormatAnnotationFormatterFactory$PatternDecoratingFormatter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/money/NumberValue
2017-01-16 20:12:17.810+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.number.money.MonetaryAmountFormatter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/money/MonetaryAmount
2017-01-16 20:12:17.825+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateToReadableInstantConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/ReadableInstant
2017-01-16 20:12:17.826+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.LocalDateParser` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/LocalDate
2017-01-16 20:12:17.826+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeContext` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTimeZone
2017-01-16 20:12:17.827+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$CalendarToReadableInstantConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/ReadableInstant
2017-01-16 20:12:17.827+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToDateMidnightConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.828+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.LocalTimeParser` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/LocalTime
2017-01-16 20:12:17.828+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$LocalDateTimeToLocalDateConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/LocalDateTime
2017-01-16 20:12:17.829+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.DateTimeFormatterFactoryBean` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/format/DateTimeFormatter
2017-01-16 20:12:17.830+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.ReadableInstantPrinter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/ReadableInstant
2017-01-16 20:12:17.830+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$LongToReadableInstantConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/ReadableInstant
2017-01-16 20:12:17.831+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.DateTimeFormatterFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/format/DateTimeFormatter
2017-01-16 20:12:17.831+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToLocalDateConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.832+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$LocalDateTimeToLocalTimeConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/LocalDateTime
2017-01-16 20:12:17.832+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.DateTimeParser` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.832+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeContextHolder` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/format/DateTimeFormatter
2017-01-16 20:12:17.833+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeFormatterRegistrar` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/format/DateTimeFormatter
2017-01-16 20:12:17.834+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToCalendarConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.834+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToLocalDateTimeConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.834+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToInstantConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.835+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.ReadablePartialPrinter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/ReadablePartial
2017-01-16 20:12:17.835+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.LocalDateTimeParser` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/LocalDateTime
2017-01-16 20:12:17.835+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToMutableDateTimeConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.836+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToLocalTimeConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.836+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToLongConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.837+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToDateConverter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/DateTime
2017-01-16 20:12:17.837+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.format.datetime.joda.JodaDateTimeFormatAnnotationFormatterFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/joda/time/format/DateTimeFormatter
2017-01-16 20:12:17.927+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.context.support.GenericGroovyApplicationContext` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObject
2017-01-16 20:12:17.940+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.SpringValidatorAdapter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/Validator
2017-01-16 20:12:17.940+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.CustomValidatorBean` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/Validator
2017-01-16 20:12:17.941+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.BeanValidationPostProcessor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/ValidatorFactory
2017-01-16 20:12:17.941+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.LocalValidatorFactoryBean` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/ValidatorFactory
2017-01-16 20:12:17.942+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/ConstraintValidatorFactory
2017-01-16 20:12:17.942+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.MethodValidationInterceptor$HibernateValidatorDelegate` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/hibernate/validator/method/MethodConstraintViolationException
2017-01-16 20:12:17.943+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.MethodValidationInterceptor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/ConstraintViolationException
2017-01-16 20:12:17.944+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.OptionalValidatorFactoryBean` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/ValidatorFactory
2017-01-16 20:12:17.944+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$HibernateValidatorDelegate` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/hibernate/validator/spi/resourceloading/ResourceBundleLocator
2017-01-16 20:12:17.944+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.MessageSourceResourceBundleLocator` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/hibernate/validator/spi/resourceloading/ResourceBundleLocator
2017-01-16 20:12:17.945+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/MessageInterpolator
2017-01-16 20:12:17.945+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.validation.beanvalidation.MethodValidationPostProcessor` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/validation/ValidatorFactory
2017-01-16 20:12:17.959+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scheduling.concurrent.ConcurrentTaskScheduler$EnterpriseConcurrentTriggerScheduler$1` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/enterprise/concurrent/Trigger
2017-01-16 20:12:17.960+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scheduling.concurrent.ConcurrentTaskScheduler$EnterpriseConcurrentTriggerScheduler` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/enterprise/concurrent/Trigger
2017-01-16 20:12:17.972+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.jruby.JRubyScriptUtils$JRubyExecutionException` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/jruby/exceptions/RaiseException
2017-01-16 20:12:17.972+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.jruby.JRubyScriptUtils$RubyObjectInvocationHandler` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/jruby/exceptions/RaiseException
2017-01-16 20:12:17.973+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.jruby.JRubyScriptFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/jruby/exceptions/RaiseException
2017-01-16 20:12:17.973+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.jruby.JRubyScriptUtils` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/jruby/exceptions/JumpException
2017-01-16 20:12:17.974+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.groovy.GroovyObjectCustomizer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyObject
2017-01-16 20:12:17.974+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.groovy.GroovyScriptEvaluator` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/lang/GroovyRuntimeException
2017-01-16 20:12:17.974+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.groovy.GroovyScriptFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/codehaus/groovy/control/CompilationFailedException
2017-01-16 20:12:17.975+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.bsh.BshScriptFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: bsh/EvalError
2017-01-16 20:12:17.975+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.bsh.BshScriptUtils$BshObjectInvocationHandler` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: bsh/EvalError
2017-01-16 20:12:17.976+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.bsh.BshScriptUtils$BshExecutionException` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: bsh/EvalError
2017-01-16 20:12:17.976+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.bsh.BshScriptUtils` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: bsh/EvalError
2017-01-16 20:12:17.976+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.scripting.bsh.BshScriptEvaluator` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: bsh/EvalError
2017-01-16 20:12:18.351+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.TransformTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.352+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.MessageTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.353+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.EvalTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.353+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.ArgumentAware` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/JspTagException
2017-01-16 20:12:18.354+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.BindErrorsTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.354+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.HtmlEscapingAwareTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.355+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.EditorAwareTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/JspException
2017-01-16 20:12:18.356+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.UrlTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.356+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.ArgumentTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/BodyTagSupport
2017-01-16 20:12:18.357+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.HtmlEscapeTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.357+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.ParamTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/BodyTagSupport
2017-01-16 20:12:18.358+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.BindTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.359+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.ThemeTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.359+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.EscapeBodyTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/BodyTag
2017-01-16 20:12:18.360+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.RequestContextAwareTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.360+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.NestedPathTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.361+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.SelectTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.362+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.AbstractHtmlElementBodyTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/BodyTag
2017-01-16 20:12:18.362+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.TagWriter$SafeWriter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/JspException
2017-01-16 20:12:18.363+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.OptionWriter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/JspException
2017-01-16 20:12:18.364+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.HiddenInputTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.365+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.RadioButtonsTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.366+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.AbstractDataBoundFormElementTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.366+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.AbstractHtmlInputElementTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.367+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.PasswordInputTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.369+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.AbstractCheckedElementTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.369+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.TagIdGenerator` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/PageContext
2017-01-16 20:12:18.370+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.AbstractSingleCheckedElementTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.371+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.CheckboxesTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.372+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.OptionsTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.372+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.OptionsTag$OptionsWriter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/JspException
2017-01-16 20:12:18.373+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.TextareaTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.374+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.InputTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.375+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.AbstractHtmlElementTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.375+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.OptionTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/BodyTag
2017-01-16 20:12:18.376+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.SelectTag$1` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/JspException
2017-01-16 20:12:18.376+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.LabelTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.377+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.ErrorsTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/BodyTag
2017-01-16 20:12:18.377+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.ButtonTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.379+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.RadioButtonTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.379+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.TagWriter` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/JspException
2017-01-16 20:12:18.380+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.FormTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.382+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.AbstractMultiCheckedElementTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.383+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.CheckboxTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/DynamicAttributes
2017-01-16 20:12:18.384+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.tags.form.AbstractFormTag` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/tagext/TryCatchFinally
2017-01-16 20:12:18.393+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.document.AbstractPdfView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/lowagie/text/Document
2017-01-16 20:12:18.394+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.document.AbstractXlsxStreamingView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/poi/ss/usermodel/Workbook
2017-01-16 20:12:18.394+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.document.AbstractPdfStamperView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/lowagie/text/pdf/PdfStamper
2017-01-16 20:12:18.394+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.document.AbstractXlsView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/poi/ss/usermodel/Workbook
2017-01-16 20:12:18.395+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.document.AbstractExcelView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/poi/hssf/usermodel/HSSFCell
2017-01-16 20:12:18.395+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.document.AbstractXlsxView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/poi/ss/usermodel/Workbook
2017-01-16 20:12:18.395+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.document.AbstractJExcelView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: jxl/Workbook
2017-01-16 20:12:18.396+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesView$2` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/request/servlet/ServletRequest
2017-01-16 20:12:18.396+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/request/Request
2017-01-16 20:12:18.397+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesViewResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/request/render/Renderer
2017-01-16 20:12:18.397+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesConfigurer$SpringTilesInitializer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/startup/DefaultTilesInitializer
2017-01-16 20:12:18.397+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesConfigurer$SpringCompleteAutoloadTilesContainerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/extras/complete/CompleteAutoloadTilesContainerFactory
2017-01-16 20:12:18.398+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesConfigurer$SpringTilesContainerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/factory/BasicTilesContainerFactory
2017-01-16 20:12:18.398+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesView$1` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/request/servlet/ServletRequest
2017-01-16 20:12:18.399+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.SpringBeanPreparerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/preparer/factory/PreparerFactory
2017-01-16 20:12:18.399+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.SimpleSpringPreparerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/preparer/factory/PreparerFactory
2017-01-16 20:12:18.399+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesConfigurer$CompositeELResolverImpl` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/el/CompositeELResolver
2017-01-16 20:12:18.400+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesConfigurer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/request/ApplicationContext
2017-01-16 20:12:18.400+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesConfigurer$SpringCompleteAutoloadTilesInitializer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/extras/complete/CompleteAutoloadTilesInitializer
2017-01-16 20:12:18.401+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.AbstractSpringPreparerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/preparer/factory/PreparerFactory
2017-01-16 20:12:18.401+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.SpringLocaleResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/locale/impl/DefaultLocaleResolver
2017-01-16 20:12:18.402+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.SpringWildcardServletTilesApplicationContext` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/request/servlet/ServletApplicationContext
2017-01-16 20:12:18.402+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles3.TilesConfigurer$TilesElActivator` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/el/ELResolver
2017-01-16 20:12:18.403+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.velocity.VelocityView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/velocity/exception/ResourceNotFoundException
2017-01-16 20:12:18.403+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.velocity.VelocityConfig` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/velocity/app/VelocityEngine
2017-01-16 20:12:18.404+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.velocity.VelocityToolboxView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/velocity/exception/ResourceNotFoundException
2017-01-16 20:12:18.404+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.velocity.VelocityLayoutView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/velocity/exception/ResourceNotFoundException
2017-01-16 20:12:18.405+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.velocity.VelocityConfigurer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/springframework/ui/velocity/VelocityEngineFactory
2017-01-16 20:12:18.405+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.velocity.VelocityView$LocaleAwareDateTool` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/velocity/tools/generic/DateTool
2017-01-16 20:12:18.405+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.velocity.VelocityView$LocaleAwareNumberTool` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/velocity/tools/generic/NumberTool
2017-01-16 20:12:18.406+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.feed.AbstractFeedView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/rometools/rome/feed/WireFeed
2017-01-16 20:12:18.407+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.feed.AbstractRssFeedView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/rometools/rome/feed/WireFeed
2017-01-16 20:12:18.407+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.feed.AbstractAtomFeedView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/rometools/rome/feed/WireFeed
2017-01-16 20:12:18.409+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.xml.MarshallingView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/springframework/oxm/Marshaller
2017-01-16 20:12:18.410+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.xml.MappingJackson2XmlView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: com/fasterxml/jackson/dataformat/xml/XmlMapper
2017-01-16 20:12:18.411+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.freemarker.FreeMarkerView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: freemarker/core/ParseException
2017-01-16 20:12:18.411+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.freemarker.FreeMarkerConfig` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: freemarker/template/Configuration
2017-01-16 20:12:18.412+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/springframework/ui/freemarker/FreeMarkerConfigurationFactory
2017-01-16 20:12:18.413+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.groovy.GroovyMarkupConfig` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/text/markup/MarkupTemplateEngine
2017-01-16 20:12:18.413+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.groovy.GroovyMarkupView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/text/Template
2017-01-16 20:12:18.413+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.groovy.GroovyMarkupConfigurer$LocaleTemplateResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/text/markup/TemplateResolver
2017-01-16 20:12:18.414+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.groovy.GroovyMarkupConfigurer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: groovy/text/markup/TemplateConfiguration
2017-01-16 20:12:18.416+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.JasperReportsMultiFormatView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.416+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.AbstractJasperReportsSingleFormatView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.417+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.ConfigurableJasperReportsView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.417+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.JasperReportsPdfView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.418+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.JasperReportsXlsView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.418+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.JasperReportsHtmlView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.419+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.JasperReportsCsvView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.419+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.JasperReportsXlsxView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.420+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.jasperreports.AbstractJasperReportsView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: net/sf/jasperreports/engine/JRException
2017-01-16 20:12:18.428+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.resource.WebJarsResourceResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/webjars/MultipleMatchesException
2017-01-16 20:12:18.437+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.support.JstlUtils$SpringLocalizationContext` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/jstl/fmt/LocalizationContext
2017-01-16 20:12:18.439+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.support.JspAwareRequestContext` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/PageContext
2017-01-16 20:12:18.441+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.support.JspAwareRequestContext$JstlPageLocaleResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: javax/servlet/jsp/PageContext
2017-01-16 20:12:18.458+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.TilesView` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/TilesApplicationContext
2017-01-16 20:12:18.458+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesInitializer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/startup/AbstractTilesInitializer
2017-01-16 20:12:18.459+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringCompleteAutoloadTilesContainerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/extras/complete/CompleteAutoloadTilesContainerFactory
2017-01-16 20:12:18.459+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesContainerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/factory/BasicTilesContainerFactory
2017-01-16 20:12:18.460+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.TilesView$1` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/servlet/context/ServletTilesRequestContext
2017-01-16 20:12:18.460+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.SpringBeanPreparerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/preparer/PreparerFactory
2017-01-16 20:12:18.461+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.SimpleSpringPreparerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/preparer/PreparerFactory
2017-01-16 20:12:18.461+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.TilesConfigurer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/TilesApplicationContext
2017-01-16 20:12:18.462+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringCompleteAutoloadTilesInitializer` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/extras/complete/CompleteAutoloadTilesInitializer
2017-01-16 20:12:18.462+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.AbstractSpringPreparerFactory` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/preparer/PreparerFactory
2017-01-16 20:12:18.463+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.SpringLocaleResolver` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/locale/impl/DefaultLocaleResolver
2017-01-16 20:12:18.463+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.SpringWildcardServletTilesApplicationContext` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/servlet/context/ServletTilesApplicationContext
2017-01-16 20:12:18.463+0000 WARN  [o.n.k.i.p.Procedures] Failed to load `org.springframework.web.servlet.view.tiles2.TilesConfigurer$TilesElActivator` from plugin jar `/Users/royi/neo4j-enterprise-3.1.0/plugins/graphaware-server-community.jar`: org/apache/tiles/evaluator/AttributeEvaluator
2017-01-16 20:12:19.583+0000 INFO  [o.n.k.AvailabilityGuard] Fulfilling of requirement makes database available: Database available
2017-01-16 20:12:19.583+0000 INFO  [o.n.k.i.f.GraphDatabaseFacadeFactory] Database is now ready

How to create a node and query the assigned UUID in a single call?

Currently, doing something like this CREATE (n:testing {name:"haha"}) RETURN n.uuid returnsnull. Querying for the above node again immediately results a UUID. The module is probably behaving per design but I am stuck with a basic requirement -- how do I uniquely query for the newly created node as part of the second query if I don't have the UUID? I could be missing something fairly obvious and I would appreciate if someone can point me how to achieve this -- create a node and retrieve the UUID in the same call/transaction (I could be using the word transaction somewhat loosely) and additionally avoid a second query/read.

Thanks in advance!

Feature request : ga.uuid.findNode() returning null

in short

ga.uuid.findNode() now returns an error if the uuid is not found in the index. Would be great to have it return null instead.

my usecase

I have a number of nodemaps (an export of a source db) and I need to update the target db. The target db does not necessarily contain all the nodes, so it's an update or create.
Since we do not know anything about the labels of the nodes that are export, we cannot rely on Neo4j labels.

WITH [
              {labels:['X','Y','Z'],properties:{uuid:'uuid1',propa:'x'}},
              {labels:['A','B','C'],properties:{uuid:'uuid2',propb:'abc'}}
] AS nodemaps

UNWIND nodemaps AS nodemap
RETURN nodemap.properties.uuid, ga.uuid.findNode(nodemap.properties.uuid) IS NULL AS nodeExists

would then be possible.

Conflict with apoc.refactor.mergeNodes

APOC mergeNodes function takes an array of nodes and merges their properties, starting from the last position in the array and merging each member onto the preceding member. When you use neo4j-uuid this fails with:

image

I don't get any log output that I can see, but I am assuming this is because they are trying to copy over the uuid property when merging the nodes.

Causal Clusters Failing

We're using uuid-3.1.0.44.13.

Plugin Config:

dbms.unmanaged_extension_classes=com.graphaware.server=/graphaware com.graphaware.runtime.enabled=true com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

We're unable to get a causal cluster to run with UUID enabled, with it disabled it works fine. It seems like UUID is trying to write to the database through a follower before the database is ready.

Leader starts fine, Followers fail with a write error before the remote interface is enabled (localhost:7474). This happens with a completely empty database too.

I also notice that CALL ga.uuid.findNode("uuid") yield node as n also causes a write.

leader
follower

SequenceIdGenerator not able to start in version 3.2.1.51.14

I am not able to set uuidGeneratorClass as SequenceIdGenerator, with latest version 3.2.1.51.14.
I am using Neo4j 3.2.1.

This is my neo4j.conf

# GraphAware Framework
dbms.unmanaged_extension_classes=com.graphaware.server=/graphaware

# GraphAware Sequence Id generator
com.graphaware.runtime.enabled=true
com.graphaware.module.UUID.1=com.graphaware.module.uuid.UuidBootstrapper
com.graphaware.module.UUID.relationship=com.graphaware.runtime.policy.all.IncludeAllBusinessRelationships
com.graphaware.module.UUID.uuidProperty=sequence
com.graphaware.module.UUID.uuidGeneratorClass=com.graphaware.module.uuid.generator.SequenceIdGenerator

Here is my docker message

neo4j | 2017-06-21 03:50:01.408+0000 INFO  ======== Neo4j 3.2.1 ========
neo4j | 2017-06-21 03:50:01.786+0000 INFO  Starting...
neo4j | 2017-06-21 03:50:02.778+0000 INFO  Bolt enabled on 0.0.0.0:7687.
neo4j | 2017-06-21 03:50:04.212+0000 INFO [c.g.r.b.RuntimeKernelExtension] GraphAware Runtime enabled, bootstrapping...
neo4j | 2017-06-21 03:50:04.244+0000 WARN  Topology change adapter is not available on community edition
neo4j | 2017-06-21 03:50:04.246+0000 INFO [c.g.r.b.RuntimeKernelExtension] Bootstrapping module with order 1, ID UUID, using com.graphaware.module.uuid.UuidBootstrapper
neo4j | 2017-06-21 03:50:04.338+0000 INFO  Relationship Inclusion Policy set to com.graphaware.common.policy.inclusion.composite.CompositeRelationshipInclusionPolicy@e4890241
neo4j | 2017-06-21 03:50:04.339+0000 INFO  uuidProperty set to sequence
neo4j | 2017-06-21 03:50:04.339+0000 INFO  uuidGenerator set to com.graphaware.module.uuid.generator.SequenceIdGeneratorwrapper.java.additional=-Dneo4j.ext.udc.source=docker
neo4j | 2017-06-21 03:50:04.351+0000 ERROR [c.g.r.b.RuntimeKernelExtension] Unable to bootstrap module 1 Unable to instantiate UuidGenerator of type 'com.graphaware.module.uuid.generator.SequenceIdGeneratorwrapper.java.additional=-Dneo4j.ext.udc.source=docker'
neo4j | java.lang.RuntimeException: Unable to instantiate UuidGenerator of type 'com.graphaware.module.uuid.generator.SequenceIdGeneratorwrapper.java.additional=-Dneo4j.ext.udc.source=docker'
neo4j |     at org.springframework.util.ClassUtils.forName(ClassUtils.java:250)
neo4j |     at com.graphaware.module.uuid.UuidModule.instantiateUuidGenerator(UuidModule.java:68)
neo4j |     ... 21 more
neo4j | 2017-06-21 03:50:04.352+0000 INFO [c.g.r.b.RuntimeKernelExtension] GraphAware Runtime bootstrapped, starting the Runtime...
neo4j | 2017-06-21 03:50:10.583+0000 INFO  Starting GraphAware...
neo4j | 2017-06-21 03:50:10.583+0000 INFO  Loading module metadata...
neo4j | 2017-06-21 03:50:10.622+0000 INFO  Module metadata loaded.
neo4j | 2017-06-21 03:50:10.622+0000 INFO  Starting transaction-driven modules...
neo4j | 2017-06-21 03:50:10.622+0000 INFO  Transaction-driven modules started.
neo4j | 2017-06-21 03:50:10.623+0000 INFO  There are no timer-driven runtime modules. Not scheduling any tasks.
neo4j | 2017-06-21 03:50:10.623+0000 INFO  GraphAware started.
neo4j | 2017-06-21 03:50:10.623+0000 INFO [c.g.r.b.RuntimeKernelExtension] GraphAware Runtime automatically started.
neo4j | 2017-06-21 03:50:12.927+0000 INFO  Started.
neo4j | 2017-06-21 03:50:13.239+0000 INFO [c.g.s.f.b.GraphAwareServerBootstrapper] started
neo4j | 2017-06-21 03:50:13.250+0000 INFO  Mounted unmanaged extension [com.graphaware.server] at [/graphaware]
neo4j | 2017-06-21 03:50:13.511+0000 INFO  Google Analytics disabled
neo4j | 2017-06-21 03:50:13.544+0000 INFO  Mounting GraphAware Framework at /graphaware
neo4j | 2017-06-21 03:50:13.567+0000 INFO  Will try to scan the following packages: {com.**.graphaware.**,org.**.graphaware.**,net.**.graphaware.**}
neo4j | 2017-06-21 03:50:16.487+0000 INFO  Remote interface available at http://localhost:7474/

UUID not generated for version 2.2.5

In the folder /var/lib/neo4j/plugins
I have the file graphaware-server-community-all-2.2.5.34.jar
I restarted the server and I created a node but there is no UUID.

neo4j-sh (?)$ create (a:Author{author_name: 'Camus, Albert'});
+-------------------+
| No data returned. |
+-------------------+
Nodes created: 1
Properties set: 1
Labels added: 1
876 ms
neo4j-sh (?)$ match (a:Author) return a;                      
+--------------------------------------+
| a                                    |
+--------------------------------------+
| Node[0]{author_name:"Camus, Albert"} |
+--------------------------------------+
1 row
267 ms
neo4j-sh (?)$ match (a:Author) return a.uuid;                 
+--------+
| a.uuid |
+--------+
| <null> |
+--------+
1 row
77 ms

plugin not working

not sure if i'm doing anything wrong here. Infos:

Neo4j version: neo4j-community_windows-x64_2_2_6.exe

D:\dev\neo4j\plugins>dir
 Volume in drive D is Data
 Volume Serial Number is 2E83-BAB4

 Directory of D:\dev\neo4j\plugins

18-10-2015  23:58    <DIR>          .
18-10-2015  23:58    <DIR>          ..
18-10-2015  23:55        13.191.699 graphaware-server-community-all-2.2.6.35.jar
18-10-2015  23:54            13.870 graphaware-uuid-2.2.6.35.7.jar
13-10-2015  22:47               279 README.txt
               3 File(s)     13.205.848 bytes
               2 Dir(s)  18.840.903.680 bytes free

md5

2990da3ce90f56cf0c6e340e9b3ca7f0 *graphaware-server-community-all-2.2.6.35.jar
4b3ad2559e9304fcb1e0bcaec312fdc1 *graphaware-uuid-2.2.6.35.7.jar

image

D:\dev\neo4j\data\neo4j.properties:

com.graphaware.runtime.enabled=true
com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

(the rest of the config is commented out with # or whitelines)

Queries (on empty database)

CREATE (n {bar: "foo"}) RETURN n
MATCH n RETURN n

image

Tried restarting the server a couple of times and tried a few queries as well. By the way i was very confused by Note that "UIDM" becomes the module ID.. So i tried replacing UIDM with several combinations of version numbers at first ... not sure if that messed something up.

In messages.log i find this

2015-10-18 22:12:31.468+0000 INFO  [o.n.k.i.DiagnosticsManager]: org.neo4j.server.db.tuning.properties=C:\Users\          \AppData\Roaming\Neo4j Community\neo4j.properties
2015-10-18 22:12:31.468+0000 INFO  [o.n.k.i.DiagnosticsManager]: org.neo4j.server.database.location=D:\dev\neo4j\data

Which is strange because the graphical interface says neo4j.properties is located elsewhere o_O

But in the same log i find:

2015-10-18 22:12:31.468+0000 INFO  [o.n.k.i.DiagnosticsManager]: com.graphaware.runtime.enabled=true
2015-10-18 22:12:31.468+0000 INFO  [o.n.k.i.DiagnosticsManager]: remote_shell_enabled=true
2015-10-18 22:12:31.468+0000 INFO  [o.n.k.i.DiagnosticsManager]: com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

Which makes me think it DID pick up on the configuration settings i've added ...

UUID is not generate

Steps i follwed
Installed neo4j-community_macos_3_0_3.dmg
Dropped both graphaware-server-community-all-3.0.3.39.jar and graphaware-uuid-3.0.3.39.10.jar at data/plugins

added the following at ~/Neo4j/.neo4j.conf

com.graphaware.runtime.enabled=true

UIDM becomes the module ID:

com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

optional, default is uuid:

com.graphaware.module.UIDM.uuidProperty=uuid

optional, default is all nodes:

com.graphaware.module.UIDM.node=hasLabel('Label1') || hasLabel('Label2')

optional, default is no relationships:

com.graphaware.module.UIDM.relationship=isType('Type1')

optional, default is uuidIndex

com.graphaware.module.UIDM.uuidIndex=uuidIndex

optional, default is uuidRelIndex

com.graphaware.module.UIDM.uuidRelationshipIndex=uuidRelIndex

My entity has the following info:

@GraphID
private Long id;

private String uuid;

But no uuid is generated for the Entity, what did i missed?

Cheers!
debug.pdf

Bytes taken by UUID

Hi,

This is not really an issue, more of a query, didn't know where else to ask.

How does this extension store the values internally within the database?
Does it store them as UUID ? i.e 128 bits (16bytes)
or is it stored as a string ? i.e (32 bytes)

Thanks.

uuid based on properties

The ability to generate/update a UUID based on the properties and label of a node/relationship would be very useful in certain situations where deduplication is needed

uuid not creating for relationship

Hello,

I am able to get the UUIDs for all the nodes, but not for the relationships. Please find the details below:

Product Versions
I am using Neo4j version 3.0.6
I have added 2 jars
1: graphaware-server-community-all-3.0.6.43.jar
2: graphaware-uuid-3.0.6.43.11.jar

neo4j.config file entries for UUID
com.graphaware.runtime.enabled=true
com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper
com.graphaware.module.UIDM.uuidProperty=uuid
com.graphaware.module.UIDM.stripHyphens=false
com.graphaware.module.UIDM.uuidIndex=uuidIndex
com.graphaware.module.UIDM.uuidRelationshipIndex=uuidRelIndex
com.graphaware.module.UIDM.relationship=com.graphaware.common.policy.all.IncludeAllRelationships

I observed the neo4j.log file entries during startup as well as during the creation of a new relationship, but there were no errors observed.

Please let me know if any of my config entries are wrong. Appreciate your help.

Graphaware: ERROR Could not deserialize metadata for module ID NLP

I've been trying to use Graphaware plugin with Neo4j 3.5. I followed the instruction in the GitHub page:
https://github.com/graphaware/neo4j-nlp

Also I increased the heap size to 6GB

Neo4j plugin directory contains:
graphaware-server-all-3.5.14.55
nlp-3.5.4.53.18
nlp-stanfordnlp-3.5.4.53.18
stanford-english-corenlp-2018-10-05-models

However when I call the
CALL ga.nlp.createSchema()
I got this error:
There is no procedure with the name ga.nlp.createSchema registered for this database instance.
Please ensure you've spelled the procedure name correctly and that the procedure is properly
deployed.

I checked the log file and found this error:
ERROR Could not deserialize metadata for module ID NLP

I also checked the debug file and I found this:
Failed to load org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesInitializer
from plugin jar /D:/Neo4JDB/neo4jDatabases/database-0499c20c-0af4-452a-af79- 144cb7d6a21d/installation-3.5.14/plugins/graphaware-server-all-3.5.14.55.jar
and this was printed for every function in the jar file.

Any help will be appreciated.

Thanks,
Abyd.

No GraphAware Runtime is registered with the given database

I downloaded the plugins of graphaware nlp,open-nlp,framework and copied the jar files to the plugins directory.

And as per the steps in neo4j , i included the following lines in neo4j.config file
dbms.unmanaged_extension_classes=com.graphaware.server=/graphaware
com.graphaware.runtime.enabled=true
com.graphaware.module.NLP.2=com.graphaware.nlp.module.NLPBootstrapper

After inserting this the localhost:7474 is not starting.

But when i comment these lines localhost starts and works properly but doesnt include the plugins.

Version : enterprise 3.1.3
Link for reference of old issue in(git)

Error in LocalLost after commenting those lines:
Failed to invoke procedure ga.nlp.annotate: Caused by: java.lang.RuntimeException:
java.lang.IllegalStateException: No GraphAware Runtime is registered with the given database

Error in log file:

2017-11-07 10:41:03.839+0000 INFO ======== Neo4j 3.1.3 ========
2017-11-07 10:41:04.120+0000 INFO Starting...
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/usr/share/neo4j/lib/slf4j-nop-1.7.22.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/var/lib/neo4j/plugins/nlp-opennlp-3.1.3.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.helpers.NOPLoggerFactory]
2017-11-07 10:41:04.985+0000 INFO Bolt enabled on localhost:7687.
2017-11-07 10:41:05.010+0000 INFO Initiating metrics...
2017-11-07 10:41:07.374+0000 INFO [c.g.r.b.RuntimeKernelExtension] GraphAware Runtime enabled, bootstrapping...
2017-11-07 10:41:07.444+0000 INFO [c.g.r.b.RuntimeKernelExtension] Bootstrapping module with order 2, ID NLP, using com.graphaware.nlp.module.NLPBootstrapper
2017-11-07 10:41:07.523+0000 INFO Registering module NLP with GraphAware Runtime.
2017-11-07 10:41:07.523+0000 INFO [c.g.r.b.RuntimeKernelExtension] GraphAware Runtime bootstrapped, starting the Runtime...
2017-11-07 10:41:21.893+0000 INFO Starting GraphAware...
2017-11-07 10:41:21.894+0000 INFO Loading module metadata...
2017-11-07 10:41:21.894+0000 INFO Loading metadata for module NLP
2017-11-07 10:41:21.946+0000 INFO Module NLP seems to have been registered for the first time.
2017-11-07 10:41:21.947+0000 INFO Module NLP seems to have been registered for the first time, will try to initialize...
2017-11-07 10:41:21.947+0000 INFO InitializeUntil set to 9223372036854775807 and it is 1510051281947. Will initialize.
2017-11-07 10:41:24.709+0000 INFO Started.
2017-11-07 10:41:24.811+0000 INFO Mounted REST API at: /db/manage
2017-11-07 10:41:24.823+0000 INFO [c.g.s.f.b.GraphAwareServerBootstrapper] started
2017-11-07 10:41:24.825+0000 INFO Mounted unmanaged extension [com.graphaware.server] at [/graphaware]
Exception in thread "GraphAware Starter" java.lang.RuntimeException: Error while initializing model of class: class opennlp.tools.namefind.TokenNameFinderModel
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.loadModel(OpenNLPPipeline.java:503)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.lambda$loadNamedEntitiesFinders$2(OpenNLPPipeline.java:161)
at java.util.HashMap$EntrySpliterator.forEachRemaining(HashMap.java:1691)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.loadNamedEntitiesFinders(OpenNLPPipeline.java:158)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.init(OpenNLPPipeline.java:118)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.(OpenNLPPipeline.java:108)
at com.graphaware.nlp.processor.opennlp.PipelineBuilder.build(PipelineBuilder.java:79)
at com.graphaware.nlp.processor.opennlp.OpenNLPTextProcessor.createPhrasePipeline(OpenNLPTextProcessor.java:106)
at com.graphaware.nlp.processor.opennlp.OpenNLPTextProcessor.init(OpenNLPTextProcessor.java:56)
at com.graphaware.nlp.processor.TextProcessorsManager.lambda$initiateTextProcessors$0(TextProcessorsManager.java:61)
at java.util.HashMap$Values.forEach(HashMap.java:980)
at com.graphaware.nlp.processor.TextProcessorsManager.initiateTextProcessors(TextProcessorsManager.java:60)
at com.graphaware.nlp.processor.TextProcessorsManager.(TextProcessorsManager.java:37)
at com.graphaware.nlp.NLPManager.init(NLPManager.java:95)
at com.graphaware.nlp.module.NLPModule.initialize(NLPModule.java:52)
at com.graphaware.runtime.manager.ProductionTxDrivenModuleManager.initialize(ProductionTxDrivenModuleManager.java:57)
at com.graphaware.runtime.manager.BaseTxDrivenModuleManager.initializeIfAllowed(BaseTxDrivenModuleManager.java:128)
at com.graphaware.runtime.manager.BaseTxDrivenModuleManager.handleNoMetadata(BaseTxDrivenModuleManager.java:72)
at com.graphaware.runtime.manager.BaseTxDrivenModuleManager.handleNoMetadata(BaseTxDrivenModuleManager.java:39)
at com.graphaware.runtime.manager.BaseModuleManager.loadMetadata(BaseModuleManager.java:143)
at com.graphaware.runtime.manager.BaseModuleManager.loadMetadata(BaseModuleManager.java:125)
at com.graphaware.runtime.TxDrivenRuntime.loadMetadata(TxDrivenRuntime.java:130)
at com.graphaware.runtime.ProductionRuntime.loadMetadata(ProductionRuntime.java:80)
at com.graphaware.runtime.BaseGraphAwareRuntime.startModules(BaseGraphAwareRuntime.java:154)
at com.graphaware.runtime.TxDrivenRuntime.startModules(TxDrivenRuntime.java:146)
at com.graphaware.runtime.ProductionRuntime.startModules(ProductionRuntime.java:70)
at com.graphaware.runtime.BaseGraphAwareRuntime.start(BaseGraphAwareRuntime.java:134)
at com.graphaware.runtime.bootstrap.RuntimeKernelExtension.lambda$start$8(RuntimeKernelExtension.java:117)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.GeneratedConstructorAccessor29.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.loadModel(OpenNLPPipeline.java:499)
... 29 more
Caused by: java.lang.OutOfMemoryError: Java heap space
at opennlp.tools.ml.model.AbstractModelReader.getParameters(AbstractModelReader.java:140)
at opennlp.tools.ml.maxent.io.GISModelReader.constructModel(GISModelReader.java:78)
at opennlp.tools.ml.model.GenericModelReader.constructModel(GenericModelReader.java:62)
at opennlp.tools.ml.model.AbstractModelReader.getModel(AbstractModelReader.java:85)
at opennlp.tools.util.model.GenericModelSerializer.create(GenericModelSerializer.java:32)
at opennlp.tools.util.model.GenericModelSerializer.create(GenericModelSerializer.java:29)
at opennlp.tools.util.model.BaseModel.finishLoadingArtifacts(BaseModel.java:309)
at opennlp.tools.util.model.BaseModel.loadModel(BaseModel.java:239)
at opennlp.tools.util.model.BaseModel.(BaseModel.java:173)
at opennlp.tools.namefind.TokenNameFinderModel.(TokenNameFinderModel.java:103)
at sun.reflect.GeneratedConstructorAccessor29.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.loadModel(OpenNLPPipeline.java:499)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.lambda$loadNamedEntitiesFinders$2(OpenNLPPipeline.java:161)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline$$Lambda$239/1188677545.accept(Unknown Source)
at java.util.HashMap$EntrySpliterator.forEachRemaining(HashMap.java:1691)
at java.util.stream.ReferencePipeline$Head.forEach(ReferencePipeline.java:580)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.loadNamedEntitiesFinders(OpenNLPPipeline.java:158)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.init(OpenNLPPipeline.java:118)
at com.graphaware.nlp.processor.opennlp.OpenNLPPipeline.(OpenNLPPipeline.java:108)
at com.graphaware.nlp.processor.opennlp.PipelineBuilder.build(PipelineBuilder.java:79)
at com.graphaware.nlp.processor.opennlp.OpenNLPTextProcessor.createPhrasePipeline(OpenNLPTextProcessor.java:106)
at com.graphaware.nlp.processor.opennlp.OpenNLPTextProcessor.init(OpenNLPTextProcessor.java:56)
at com.graphaware.nlp.processor.TextProcessorsManager.lambda$initiateTextProcessors$0(TextProcessorsManager.java:61)
at com.graphaware.nlp.processor.TextProcessorsManager$$Lambda$234/2094381213.accept(Unknown Source)
at java.util.HashMap$Values.forEach(HashMap.java:980)
at com.graphaware.nlp.processor.TextProcessorsManager.initiateTextProcessors(TextProcessorsManager.java:60)
at com.graphaware.nlp.processor.TextProcessorsManager.(TextProcessorsManager.java:37)
at com.graphaware.nlp.NLPManager.init(NLPManager.java:95)
at com.graphaware.nlp.module.NLPModule.initialize(NLPModule.java:52)
at com.graphaware.runtime.manager.ProductionTxDrivenModuleManager.initialize(ProductionTxDrivenModuleManager.java:57)
please help me out

Errors during boot

I'm getting the following in the debug log when starting neo4j


2019-06-21 15:05:40.087+0000 WARN [o.n.k.i.p.Procedures] Failed to load `com.graphaware.module.uuid.generator.JavaUtilUUIDGenerator` from plugin jar `/var/lib/neo4j/plugins/graphaware-uuid-3.5.4.53.17.jar`: com/graphaware/common/uuid/UuidGenerator
2019-06-21 15:05:40.090+0000 WARN [o.n.k.i.p.Procedures] Failed to load `com.graphaware.module.uuid.generator.SequenceIdGenerator` from plugin jar `/var/lib/neo4j/plugins/graphaware-uuid-3.5.4.53.17.jar`: com/graphaware/common/uuid/UuidGenerator
2019-06-21 15:05:40.091+0000 WARN [o.n.k.i.p.Procedures] Failed to load `com.graphaware.module.uuid.UuidModule` from plugin jar `/var/lib/neo4j/plugins/graphaware-uuid-3.5.4.53.17.jar`: com/graphaware/runtime/module/BaseTxDrivenModule
2019-06-21 15:05:40.094+0000 WARN [o.n.k.i.p.Procedures] Failed to load `com.graphaware.module.uuid.UuidConfiguration` from plugin jar `/var/lib/neo4j/plugins/graphaware-uuid-3.5.4.53.17.jar`: com/graphaware/runtime/config/BaseTxDrivenModuleConfiguration
2019-06-21 15:05:40.094+0000 WARN [o.n.k.i.p.Procedures] Failed to load `com.graphaware.module.uuid.api.UuidApi` from plugin jar `/var/lib/neo4j/plugins/graphaware-uuid-3.5.4.53.17.jar`: com/graphaware/runtime/config/BaseTxDrivenModuleConfiguration
2019-06-21 15:05:40.095+0000 WARN [o.n.k.i.p.Procedures] Failed to load `com.graphaware.module.uuid.UuidBootstrapper` from plugin jar `/var/lib/neo4j/plugins/graphaware-uuid-3.5.4.53.17.jar`: com/graphaware/runtime/module/RuntimeModuleBootstrapper

Any ideas?

UUID is not available via cypher immediately upon creation

With graphaware framework and neo4j-uuid plugins installed:

  1. Open the neo4j browser (http://localhost:7474/browser)
  2. Enter the following cypher: create (n {name: "foo"}) return n, n.uuid;
  3. Enter the following cypher: match (n {name: "foo"}) return n, n.uuid;

Actual result:
{name: "foo"}, null (from create)
{name: "foo", uuid: "<UUID>"}, <UUID> (from match)

Expected result:
{name: "foo", uuid: "<UUID>"}, <UUID>
{name: "foo", uuid: "<UUID>"}, <UUID>

This issue is reproducible via neo's REST API as well. Not returning the UUID at time of create requires additional cypher queries to get the UUID.

Uuid plugins hangs write query after upgrade

We can't create or update new data after we upgraded the the database to v3.5.9 and consequently the plugins.

We are using:

  • Graphaware server v3.5.4.53,
  • Graphaware uuid v3.5.4.53.17
  • APOC v3.5.0.4

After a log of time of executing a query with a create statement I see this exceptions in my neo4j.log.

If I remove graphaware uuid plugin jar and its configurations it all works.

image

I'd appreciate any help :)

UUID and TimeTree aren't playing well together

I added UUID to a project and then, after confirming that UUID worked, added TimeTree. Once I enabled TimeTree, UUID no longer added a uuid property to newly created nodes. If I then remove TimeTree and restart, UUID will add a uuid property to all nodes during startup and will again add a uuid to each new node.

Environment

  • Neo4j Enterprise 2.2.1 - standalone server
  • GraphAware jars (downloaded from http://graphaware.com/products/):
    • graphaware-server-enterprise-all-2.2.1.30.jar
    • graphaware-timetree-2.2.1.30.21.jar
    • graphaware-uuid-2.2.1.30.7.jar
  • Mac OSX 10.10.3

Java

$ java -version
java version "1.8.0_05"
Java(TM) SE Runtime Environment (build 1.8.0_05-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.5-b02, mixed mode)

$ javac -version
javac 1.8.0_05

Configuration (neo4j-server.properties):

# GraphAware
com.graphaware.runtime.enabled=true

#
# GraphAware TimeTree
#
# A Runtime module that takes care of attaching the events like this (TT is the ID of the module)
com.graphaware.module.TT.1=com.graphaware.module.timetree.module.TimeTreeModuleBootstrapper

# Nodes which represent events and should be attached automatically have to be defined
com.graphaware.module.TT.event=hasLabel('Event')

# Optionally, a property on the event nodes that represents the the time (long) at which the event took place must be specified (defaults to "timestamp")
# com.graphaware.module.TT.timestamp=time

# Optionally, a resolution can be specified (defaults to DAY)
com.graphaware.module.TT.resolution=SECOND

# Optionally, a time zone can be specified (defaults to UTC)
# com.graphaware.module.TT.timezone=GMT+1

# Optionally, a relationship type with which the events will be attached to the tree can be specified (defaults to AT_TIME)
# com.graphaware.module.TT.relationship=SENT_ON

# autoAttach must be set to true
com.graphaware.module.TT.autoAttach=true

#
# GraphAware UUID
#
#UIDM becomes the module ID:
com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

Please let me know what additional information will be necessary or helpful.

uuid indexes

I'm trying to run the graphaware annotate function on Neo4j Enterprise 3.3.0 using the stanford tokenizer pipeline and it's very slow. I've included the uuid plugin and that does seem to add the uuid property to every node. But when I call db.indexes I only see the recommended indexes I created explicitly:

"INDEX ON :Tag(value)"
"INDEX ON :AnnotatedText(id)"
"INDEX ON :Sentence(id)"
"INDEX ON :Tag(id)"

It feels to me I should also see indexes for all the types of node being created but I see nothing and I suspect that's why it's so very slow. My configuration is:

com.graphaware.runtime.enabled=true

#UIDM becomes the module ID:
com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

#optional, default is uuid:
com.graphaware.module.UIDM.uuidProperty=uuid

#optional, default is false:
com.graphaware.module.UIDM.stripHyphens=false

#optional, default is all nodes:
#com.graphaware.module.UIDM.node=hasLabel('Label1') || hasLabel('Label2')

#optional, default is no relationships:
#com.graphaware.module.UIDM.relationship=isType('Type1')

#optional, default is uuidIndex
com.graphaware.module.UIDM.uuidIndex=uuidIndex

#optional, default is uuidRelIndex
#com.graphaware.module.UIDM.uuidRelationshipIndex=uuidRelIndex

Am I doing something obviously wrong ?

No GraphAware Runtime is registered with the given database

I have a fresh Neo4j 3.0.4 install using the 3.0.4.43 framwork plugins.

Timetree is installed and working flawlessly, however, I cannot get uuid to work.
CALL ga.uuid.findNode("uuid") YIELD node as n always throws the error Failed to invoke procedure ga.uuid.findNode: Caused by: java.lang.IllegalStateException: No GraphAware Runtime is registered with the given database

I've attached the neo4j.conf file.
neo4j.conf.txt

screen shot 2016-08-08 at 6 49 59 pm

Any idea on what i'm doing wrong?

UUID format and examples in doc

Can you include the format definition of the UUID, as well as some examples? Is it a random string of characters, or a simple increment counter (1, 2, 3...)?

Also, is the format controllable?

No UUID generated

Neo4j 2.2.2
plugins
graphaware-server-community-all-2.2.2.31.jar
graphaware-uuid-2.2.2.31.7.jar

conf neo4j.properties
com.graphaware.runtime.enabled=true

UIDM becomes the module ID:

com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

in the browser console
CREATE (n:Test {name:"World"}) RETURN n
results:
Test :0 name:World

No uuid...

Slicing by uuid

Given that I have a list of nodes, in this case retrieved from ga.timetree.events.range(start, end) and ordered in descending order based on the timestamp, is it possible to slice that list using a WHERE clause and a comparison operator to retrieve all the nodes after a specific uuid?

crude ex:
posts = [ ({uuid: "1sdasda"}), ({uuid: "232erads"}), ({uuid: "asdas3"}), ({uuid: "4asdas"}) ]

WITH posts WHERE posts.uuid > "232erads"

expecting:
posts = [ ({uuid: "asdas3"}), ({uuid: "4asdas"}) ]

I tried it with the neo4j explorer and the results were a bit inconsistent so I wanted to see if it's officially possible or not. If not, are there any recommended paths to a solution?

Relationship index

What do you mean with relationship index?

com.graphaware.module.UIDM.uuidRelationshipIndex=uuidRelIndex

I read that it is not possible to index a relationship property in neo4j

UUID isn't setting for Neo4j Enterprise v3.1

I installed the plugin by placing the two .jar files in the plugins folder and then putting the below text in the neo4j.conf file.

com.graphaware.runtime.enabled=true

#UIDM becomes the module ID:
com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

#optional, default is uuid:
com.graphaware.module.UIDM.uuidProperty=uuid

#optional, default is false:
com.graphaware.module.UIDM.stripHyphens=false

#optional, default is all nodes:
com.graphaware.module.UIDM.node=hasLabel('Label1') || hasLabel('Label2')

#optional, default is no relationships:
com.graphaware.module.UIDM.relationship=isType('Type1')

#optional, default is uuidIndex
com.graphaware.module.UIDM.uuidIndex=uuidIndex

#optional, default is uuidRelIndex
com.graphaware.module.UIDM.uuidRelationshipIndex=uuidRelIndex

Currently, my database looks like normal except under "Property Keys" it's showing "_GA_TX_MODULE_UIDM" which confuses me because I believe the property should be "uuid".

When clicking on the property key "_GA_TX_MODULE_UIDM" it gives me nothing in the query window. I don't believe I have done anything wrong with it. I've restarted, I started and stopped the server numerous times. Is it because it's v 3.1?

Failed to load uuid plugin

2020-02-27 17:48:48.018+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.server.foundation.context.BaseWebContextCreator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:48.021+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.server.foundation.context.WebContextCreator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:48.025+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.server.foundation.context.GraphAwareWebContextCreator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:48.027+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.server.foundation.bootstrap.GraphAwareBootstrappingFilter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:48.028+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.server.foundation.bootstrap.GraphAwareServerBootstrapper from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/server/plugins/SPIPluginLifecycle
2020-02-27 17:48:48.037+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.server.tx.LongRunningTransactionFilter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/server/rest/transactional/error/TransactionLifecycleException
2020-02-27 17:48:48.040+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.config.RuntimeConfiguration from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:48.044+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.common.kv.GraphKeyValueStore from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/impl/core/GraphProperties
2020-02-27 17:48:48.056+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.common.util.FakeTransaction from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/graphdb/PropertyContainer
2020-02-27 17:48:48.059+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.common.wrapper.BaseEntityWrapper$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/IterableWrapper
2020-02-27 17:48:48.081+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.common.log.LoggerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/extension/KernelExtensionFactory
2020-02-27 17:48:48.455+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.apache.commons.logging.impl.AvalonLogger from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/avalon/framework/logger/Logger
2020-02-27 17:48:48.457+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.apache.commons.logging.impl.Log4JLogger from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/log4j/Priority
2020-02-27 17:48:48.460+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.apache.commons.logging.impl.LogKitLogger from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/log/Logger
2020-02-27 17:48:48.529+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.eaio.uuid.UUIDHolder from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/omg/CORBA/portable/Streamable
2020-02-27 17:48:48.530+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.eaio.uuid.UUID from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/omg/CORBA/portable/IDLEntity
2020-02-27 17:48:48.531+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.eaio.uuid.UUIDHelper from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/omg/CORBA/TypeCode
2020-02-27 17:48:48.608+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scheduling.concurrent.ConcurrentTaskScheduler$EnterpriseConcurrentTriggerScheduler from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/enterprise/concurrent/Trigger
2020-02-27 17:48:48.609+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scheduling.concurrent.ConcurrentTaskScheduler$EnterpriseConcurrentTriggerScheduler$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/enterprise/concurrent/Trigger
2020-02-27 17:48:48.635+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.context.support.GenericGroovyApplicationContext from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObject
2020-02-27 17:48:48.747+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.rmi.JndiRmiClientInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/omg/CORBA/SystemException
2020-02-27 17:48:48.748+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.rmi.JndiRmiProxyFactoryBean from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/omg/CORBA/SystemException
2020-02-27 17:48:48.758+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.bsh.BshScriptUtils$BshExecutionException from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: bsh/EvalError
2020-02-27 17:48:48.758+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.bsh.BshScriptEvaluator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: bsh/EvalError
2020-02-27 17:48:48.759+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.bsh.BshScriptFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: bsh/EvalError
2020-02-27 17:48:48.760+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.bsh.BshScriptUtils$BshObjectInvocationHandler from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: bsh/EvalError
2020-02-27 17:48:48.761+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.bsh.BshScriptUtils from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: bsh/EvalError
2020-02-27 17:48:48.761+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.jruby.JRubyScriptFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/jruby/exceptions/RaiseException
2020-02-27 17:48:48.762+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.jruby.JRubyScriptUtils$JRubyExecutionException from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/jruby/exceptions/RaiseException
2020-02-27 17:48:48.762+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.jruby.JRubyScriptUtils$RubyObjectInvocationHandler from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/jruby/exceptions/RaiseException
2020-02-27 17:48:48.763+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.jruby.JRubyScriptUtils from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/jruby/exceptions/JumpException
2020-02-27 17:48:48.764+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.groovy.GroovyObjectCustomizer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObject
2020-02-27 17:48:48.764+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.groovy.GroovyScriptEvaluator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyRuntimeException
2020-02-27 17:48:48.765+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.scripting.groovy.GroovyScriptFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/codehaus/groovy/control/CompilationFailedException
2020-02-27 17:48:48.778+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.validation.beanvalidation.MessageSourceResourceBundleLocator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/hibernate/validator/spi/resourceloading/ResourceBundleLocator
2020-02-27 17:48:48.788+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.validation.beanvalidation.MethodValidationInterceptor$HibernateValidatorDelegate from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/hibernate/validator/method/MethodConstraintViolationException
2020-02-27 17:48:48.789+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$HibernateValidatorDelegate from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/hibernate/validator/spi/resourceloading/ResourceBundleLocator
2020-02-27 17:48:48.868+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToCalendarConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.868+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToDateConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.869+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$LongToReadableInstantConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/ReadableInstant
2020-02-27 17:48:48.870+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.LocalDateParser from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/LocalDate
2020-02-27 17:48:48.870+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.DurationFormatter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/Duration
2020-02-27 17:48:48.871+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.MonthDayFormatter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/MonthDay
2020-02-27 17:48:48.871+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.PeriodFormatter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/Period
2020-02-27 17:48:48.872+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.DateTimeParser from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.872+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$CalendarToReadableInstantConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/ReadableInstant
2020-02-27 17:48:48.873+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.YearMonthFormatter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/YearMonth
2020-02-27 17:48:48.873+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToMutableDateTimeConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.874+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToLocalDateTimeConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.874+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$LocalDateTimeToLocalTimeConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/LocalDateTime
2020-02-27 17:48:48.875+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateToReadableInstantConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/ReadableInstant
2020-02-27 17:48:48.876+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToInstantConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.876+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.ReadableInstantPrinter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/ReadableInstant
2020-02-27 17:48:48.877+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.DateTimeFormatterFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/format/DateTimeFormatter
2020-02-27 17:48:48.879+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToDateMidnightConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.880+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaDateTimeFormatAnnotationFormatterFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/format/DateTimeFormatter
2020-02-27 17:48:48.880+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToLocalDateConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.881+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.ReadablePartialPrinter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/ReadablePartial
2020-02-27 17:48:48.881+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeContext from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/format/DateTimeFormatter
2020-02-27 17:48:48.882+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToLongConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.882+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$DateTimeToLocalTimeConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/DateTime
2020-02-27 17:48:48.883+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeConverters$LocalDateTimeToLocalDateConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/LocalDateTime
2020-02-27 17:48:48.884+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeContextHolder from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/format/DateTimeFormatter
2020-02-27 17:48:48.886+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.JodaTimeFormatterRegistrar from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/format/DateTimeFormatter
2020-02-27 17:48:48.886+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.LocalTimeParser from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/LocalTime
2020-02-27 17:48:48.887+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.LocalDateTimeParser from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/LocalDateTime
2020-02-27 17:48:48.887+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.datetime.joda.DateTimeFormatterFactoryBean from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/joda/time/format/DateTimeFormatter
2020-02-27 17:48:48.906+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.number.money.Jsr354NumberFormatAnnotationFormatterFactory$NumberDecoratingFormatter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/money/MonetaryAmount
2020-02-27 17:48:48.907+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.number.money.CurrencyUnitFormatter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/money/CurrencyUnit
2020-02-27 17:48:48.907+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.number.money.MonetaryAmountFormatter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/money/MonetaryAmount
2020-02-27 17:48:48.909+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.format.number.money.Jsr354NumberFormatAnnotationFormatterFactory$PatternDecoratingFormatter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/money/NumberValue
2020-02-27 17:48:48.915+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.ejb.access.AbstractRemoteSlsbInvokerInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/ejb/EJBObject
2020-02-27 17:48:48.915+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.ejb.access.LocalSlsbInvokerInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/ejb/EJBLocalObject
2020-02-27 17:48:48.915+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.ejb.access.SimpleRemoteSlsbInvokerInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/ejb/EJBObject
2020-02-27 17:48:48.916+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.ejb.interceptor.SpringBeanAutowiringInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/ejb/EJBException
2020-02-27 17:48:48.940+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJExpressionPointcut$BeanNamePointcutDesignatorHandler from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/tools/PointcutDesignatorHandler
2020-02-27 17:48:48.943+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJMethodBeforeAdvice from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/JoinPoint
2020-02-27 17:48:48.944+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJAfterAdvice from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/JoinPoint
2020-02-27 17:48:48.945+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.annotation.AspectMetadata from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/reflect/AjType
2020-02-27 17:48:48.959+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.RuntimeTestWalker$InstanceOfResidueTestVisitor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/ast/ITestVisitor
2020-02-27 17:48:48.959+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator$PartiallyComparableAdvisorHolder from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/util/PartialOrder$PartialComparable
2020-02-27 17:48:48.960+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJAroundAdvice from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/JoinPoint
2020-02-27 17:48:48.961+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.RuntimeTestWalker$SubtypeSensitiveVarTypeTestVisitor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/ast/ITestVisitor
2020-02-27 17:48:48.962+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJExpressionPointcut from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/reflect/ReflectionWorld$ReflectionWorldException
2020-02-27 17:48:48.963+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.RuntimeTestWalker$TestVisitorAdapter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/ast/ITestVisitor
2020-02-27 17:48:48.964+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJAfterReturningAdvice from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/JoinPoint
2020-02-27 17:48:48.965+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.RuntimeTestWalker$ThisInstanceOfResidueTestVisitor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/ast/ITestVisitor
2020-02-27 17:48:48.966+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/ProceedingJoinPoint
2020-02-27 17:48:48.967+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJExpressionPointcut$BeanNameContextMatcher from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/tools/ContextBasedMatcher
2020-02-27 17:48:48.967+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.RuntimeTestWalker$TargetInstanceOfResidueTestVisitor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/ast/ITestVisitor
2020-02-27 17:48:48.968+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AbstractAspectJAdvice from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/JoinPoint
2020-02-27 17:48:48.968+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJAfterThrowingAdvice from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/JoinPoint
2020-02-27 17:48:48.969+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint$MethodSignatureImpl from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/reflect/MethodSignature
2020-02-27 17:48:48.970+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint$SourceLocationImpl from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/lang/reflect/SourceLocation
2020-02-27 17:48:48.970+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJWeaverMessageHandler from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/bridge/IMessageHandler
2020-02-27 17:48:48.970+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.aspectj.AspectJExpressionPointcut$DefensiveShadowMatch from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/tools/ShadowMatch
2020-02-27 17:48:48.975+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.interceptor.JamonPerformanceMonitorInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/jamonapi/MonKey
2020-02-27 17:48:48.985+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.framework.autoproxy.target.QuickTargetSourceCreator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/commons/pool2/PooledObjectFactory
2020-02-27 17:48:48.999+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.target.CommonsPool2TargetSource from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/commons/pool2/PooledObjectFactory
2020-02-27 17:48:49.001+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.aop.target.CommonsPoolTargetSource from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/commons/pool/PoolableObjectFactory
2020-02-27 17:48:49.019+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.config.YamlMapFactoryBean from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/yaml/snakeyaml/reader/UnicodeReader
2020-02-27 17:48:49.027+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.config.YamlProcessor$StrictMapAppenderConstructor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/yaml/snakeyaml/constructor/Constructor
2020-02-27 17:48:49.028+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.config.YamlPropertiesFactoryBean from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/yaml/snakeyaml/reader/UnicodeReader
2020-02-27 17:48:49.029+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.config.YamlProcessor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/yaml/snakeyaml/reader/UnicodeReader
2020-02-27 17:48:49.082+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.access.el.SpringBeanELResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/el/ELResolver
2020-02-27 17:48:49.083+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.access.el.SimpleSpringBeanELResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/el/ELResolver
2020-02-27 17:48:49.143+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyDynamicElementReader$_invokeMethod_closure1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/codehaus/groovy/runtime/GeneratedClosure
2020-02-27 17:48:49.143+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyDynamicElementReader from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObjectSupport
2020-02-27 17:48:49.144+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$GroovyRuntimeBeanReference from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObject
2020-02-27 17:48:49.145+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyBeanDefinitionWrapper from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObjectSupport
2020-02-27 17:48:49.145+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$3 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObjectSupport
2020-02-27 17:48:49.146+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$GroovyRuntimeBeanReference$GroovyPropertyValue from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObjectSupport
2020-02-27 17:48:49.147+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObject
2020-02-27 17:48:49.147+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/Closure
2020-02-27 17:48:49.148+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader$2 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/Binding
2020-02-27 17:48:49.161+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.core.type.filter.AspectJTypeFilter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/aspectj/weaver/World
2020-02-27 17:48:49.360+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.cglib.transform.AbstractProcessTask from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tools/ant/Task
2020-02-27 17:48:49.361+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.cglib.transform.AbstractTransformTask from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tools/ant/Task
2020-02-27 17:48:49.404+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.client.OkHttpAsyncClientHttpRequest$OkHttpListenableFuture$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/squareup/okhttp/Callback
2020-02-27 17:48:49.406+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.client.OkHttpAsyncClientHttpRequest$OkHttpListenableFuture from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/squareup/okhttp/Callback
2020-02-27 17:48:49.408+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.client.OkHttp3AsyncClientHttpRequest$OkHttpListenableFuture$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: okhttp3/Callback
2020-02-27 17:48:49.410+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.client.OkHttp3AsyncClientHttpRequest$OkHttpListenableFuture from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: okhttp3/Callback
2020-02-27 17:48:49.410+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.client.OkHttp3ClientHttpRequestFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: okhttp3/MediaType
2020-02-27 17:48:49.416+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.client.HttpComponentsAsyncClientHttpRequestFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/http/nio/client/HttpAsyncClient
2020-02-27 17:48:49.418+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.client.OkHttpClientHttpRequestFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/squareup/okhttp/MediaType
2020-02-27 17:48:49.439+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.protobuf.ProtobufHttpMessageConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/googlecode/protobuf/format/ProtobufFormatter
2020-02-27 17:48:49.439+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.protobuf.ExtensionRegistryInitializer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/google/protobuf/ExtensionRegistry
2020-02-27 17:48:49.456+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.json.GsonBuilderUtils$Base64TypeAdapter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/google/gson/JsonSerializer
2020-02-27 17:48:49.457+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.json.GsonFactoryBean from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/google/gson/Gson
2020-02-27 17:48:49.458+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.json.GsonHttpMessageConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/google/gson/JsonIOException
2020-02-27 17:48:49.461+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.json.Jackson2ObjectMapperBuilder$XmlObjectMapperInitializer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/fasterxml/jackson/dataformat/xml/XmlMapper
2020-02-27 17:48:49.462+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.json.GsonBuilderUtils from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/google/gson/GsonBuilder
2020-02-27 17:48:49.462+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.feed.AbstractWireFeedHttpMessageConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/rometools/rome/io/FeedException
2020-02-27 17:48:49.463+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.feed.RssChannelHttpMessageConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/rometools/rome/io/FeedException
2020-02-27 17:48:49.463+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.feed.AtomFeedHttpMessageConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/rometools/rome/io/FeedException
2020-02-27 17:48:49.470+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.http.converter.xml.MarshallingHttpMessageConverter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/springframework/oxm/UnmarshallingFailureException
2020-02-27 17:48:49.474+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.caucho.HessianExporter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/caucho/hessian/io/HessianDebugInputStream
2020-02-27 17:48:49.476+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.caucho.SimpleHessianServiceExporter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/caucho/hessian/io/HessianDebugInputStream
2020-02-27 17:48:49.477+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.caucho.HessianServiceExporter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/caucho/hessian/io/HessianDebugInputStream
2020-02-27 17:48:49.477+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.caucho.HessianClientInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/caucho/hessian/client/HessianConnectionFactory
2020-02-27 17:48:49.478+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.caucho.BurlapClientInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/caucho/burlap/client/BurlapProxyFactory
2020-02-27 17:48:49.482+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.jaxws.AbstractJaxWsServiceExporter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: [Ljavax/xml/ws/WebServiceFeature;
2020-02-27 17:48:49.483+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.jaxws.JaxWsSoapFaultException from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/xml/ws/soap/SOAPFaultException
2020-02-27 17:48:49.483+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.jaxws.LocalJaxWsServiceFactoryBean from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/xml/ws/Service
2020-02-27 17:48:49.484+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.jaxws.JaxWsPortProxyFactoryBean from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/xml/ws/soap/SOAPFaultException
2020-02-27 17:48:49.484+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.jaxws.LocalJaxWsServiceFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/xml/ws/handler/HandlerResolver
2020-02-27 17:48:49.485+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.jaxws.SimpleJaxWsServiceExporter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/xml/ws/Endpoint
2020-02-27 17:48:49.485+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.jaxws.JaxWsPortClientInterceptor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/xml/ws/soap/SOAPFaultException
2020-02-27 17:48:49.486+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.remoting.jaxws.SimpleHttpServerJaxWsServiceExporter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/xml/ws/Endpoint
2020-02-27 17:48:49.487+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.jsf.DelegatingPhaseListenerMulticaster from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/faces/event/PhaseListener
2020-02-27 17:48:49.487+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.jsf.el.WebApplicationContextFacesELResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/el/ELResolver
2020-02-27 17:48:49.488+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.jsf.el.SpringBeanFacesELResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/el/ELResolver
2020-02-27 17:48:49.488+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.jsf.DelegatingNavigationHandlerProxy from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/faces/application/NavigationHandler
2020-02-27 17:48:49.489+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.jsf.DecoratingNavigationHandler from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/faces/application/NavigationHandler
2020-02-27 17:48:49.489+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.jsf.FacesContextUtils from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/faces/context/FacesContext
2020-02-27 17:48:49.497+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.multipart.commons.CommonsFileUploadSupport from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/commons/fileupload/FileItemFactory
2020-02-27 17:48:49.498+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.multipart.commons.CommonsMultipartResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/commons/fileupload/FileItemFactory
2020-02-27 17:48:49.498+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.multipart.commons.CommonsMultipartFile from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/commons/fileupload/FileUploadException
2020-02-27 17:48:49.535+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.context.request.FacesRequestAttributes from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/faces/context/FacesContext
2020-02-27 17:48:49.547+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.context.request.FacesRequestAttributes$PortletSessionAccessor from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/faces/context/ExternalContext
2020-02-27 17:48:49.551+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.context.support.WebApplicationContextUtils$FacesDependencyRegistrar$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/faces/context/FacesContext
2020-02-27 17:48:49.551+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.context.support.GroovyWebApplicationContext from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/lang/GroovyObject
2020-02-27 17:48:49.556+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.context.support.WebApplicationContextUtils$FacesDependencyRegistrar$2 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/faces/context/ExternalContext
2020-02-27 17:48:49.604+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.util.TagUtils from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/Tag
2020-02-27 17:48:49.638+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.support.JspAwareRequestContext$JstlPageLocaleResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/PageContext
2020-02-27 17:48:49.640+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.support.JspAwareRequestContext from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/PageContext
2020-02-27 17:48:49.641+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.support.JstlUtils$SpringLocalizationContext from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/jstl/fmt/LocalizationContext
2020-02-27 17:48:49.705+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.EscapeBodyTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/BodyTag
2020-02-27 17:48:49.705+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.ParamTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/BodyTagSupport
2020-02-27 17:48:49.706+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.ArgumentTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/BodyTagSupport
2020-02-27 17:48:49.706+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.NestedPathTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.707+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.UrlTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.707+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.ArgumentAware from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/JspTagException
2020-02-27 17:48:49.708+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.HtmlEscapeTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.709+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.HtmlEscapingAwareTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.710+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.BindTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.710+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.BindErrorsTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.711+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.RequestContextAwareTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.711+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.EvalTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.712+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.EditorAwareTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/JspException
2020-02-27 17:48:49.712+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.ThemeTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.713+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.MessageTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.714+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.ButtonTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.715+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.OptionsTag$OptionsWriter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/JspException
2020-02-27 17:48:49.715+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.OptionWriter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/JspException
2020-02-27 17:48:49.716+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.CheckboxTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.717+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.CheckboxesTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.718+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.FormTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.719+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.OptionsTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.719+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.AbstractHtmlElementTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.720+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.LabelTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.721+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.RadioButtonsTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.722+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.SelectTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.723+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.RadioButtonTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.724+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.HiddenInputTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.724+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.SelectTag$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/JspException
2020-02-27 17:48:49.725+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.AbstractHtmlInputElementTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.725+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.TextareaTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.727+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.PasswordInputTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.728+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.OptionTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/BodyTag
2020-02-27 17:48:49.728+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.InputTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.729+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.AbstractCheckedElementTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.730+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.TagIdGenerator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/PageContext
2020-02-27 17:48:49.731+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.AbstractFormTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.732+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.AbstractSingleCheckedElementTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.733+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.TagWriter$SafeWriter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/JspException
2020-02-27 17:48:49.734+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.AbstractMultiCheckedElementTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/DynamicAttributes
2020-02-27 17:48:49.735+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.TagWriter from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/JspException
2020-02-27 17:48:49.735+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.ErrorsTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/BodyTag
2020-02-27 17:48:49.736+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.AbstractHtmlElementBodyTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/BodyTag
2020-02-27 17:48:49.736+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.form.AbstractDataBoundFormElementTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.737+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.tags.TransformTag from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/servlet/jsp/tagext/TryCatchFinally
2020-02-27 17:48:49.765+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.AbstractJasperReportsSingleFormatView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.765+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.JasperReportsCsvView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.766+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.JasperReportsHtmlView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.766+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.JasperReportsMultiFormatView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.767+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.AbstractJasperReportsView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.767+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.JasperReportsXlsView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.768+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.JasperReportsXlsxView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.768+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.JasperReportsPdfView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.769+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.jasperreports.ConfigurableJasperReportsView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: net/sf/jasperreports/engine/JRException
2020-02-27 17:48:49.772+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/springframework/ui/freemarker/FreeMarkerConfigurationFactory
2020-02-27 17:48:49.773+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.freemarker.FreeMarkerConfig from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: freemarker/template/Configuration
2020-02-27 17:48:49.774+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.freemarker.FreeMarkerView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: freemarker/core/ParseException
2020-02-27 17:48:49.776+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.feed.AbstractFeedView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/rometools/rome/feed/WireFeed
2020-02-27 17:48:49.776+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.feed.AbstractAtomFeedView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/rometools/rome/feed/WireFeed
2020-02-27 17:48:49.777+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.feed.AbstractRssFeedView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/rometools/rome/feed/WireFeed
2020-02-27 17:48:49.777+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.document.AbstractJExcelView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: jxl/Workbook
2020-02-27 17:48:49.778+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.document.AbstractXlsView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/poi/ss/usermodel/Workbook
2020-02-27 17:48:49.778+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.document.AbstractXlsxView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/poi/ss/usermodel/Workbook
2020-02-27 17:48:49.779+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.document.AbstractXlsxStreamingView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/poi/ss/usermodel/Workbook
2020-02-27 17:48:49.779+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.document.AbstractPdfView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/lowagie/text/Document
2020-02-27 17:48:49.780+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.document.AbstractPdfStamperView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/lowagie/text/pdf/PdfReader
2020-02-27 17:48:49.780+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.document.AbstractExcelView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/poi/hssf/usermodel/HSSFCell
2020-02-27 17:48:49.782+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.velocity.VelocityLayoutView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/velocity/exception/ResourceNotFoundException
2020-02-27 17:48:49.782+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.velocity.VelocityView$LocaleAwareNumberTool from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/velocity/tools/generic/NumberTool
2020-02-27 17:48:49.782+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.velocity.VelocityToolboxView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/velocity/exception/ResourceNotFoundException
2020-02-27 17:48:49.783+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.velocity.VelocityConfig from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/velocity/app/VelocityEngine
2020-02-27 17:48:49.783+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.velocity.VelocityView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/velocity/exception/ResourceNotFoundException
2020-02-27 17:48:49.784+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.velocity.VelocityView$LocaleAwareDateTool from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/velocity/tools/generic/DateTool
2020-02-27 17:48:49.784+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.velocity.VelocityConfigurer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/springframework/ui/velocity/VelocityEngineFactory
2020-02-27 17:48:49.785+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.SpringBeanPreparerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/preparer/factory/PreparerFactory
2020-02-27 17:48:49.786+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesConfigurer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/request/ApplicationContext
2020-02-27 17:48:49.787+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/request/Request
2020-02-27 17:48:49.787+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesConfigurer$SpringCompleteAutoloadTilesInitializer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/extras/complete/CompleteAutoloadTilesInitializer
2020-02-27 17:48:49.787+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesConfigurer$SpringCompleteAutoloadTilesContainerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/extras/complete/CompleteAutoloadTilesContainerFactory
2020-02-27 17:48:49.788+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesConfigurer$TilesElActivator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/el/ELResolver
2020-02-27 17:48:49.788+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.AbstractSpringPreparerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/preparer/factory/PreparerFactory
2020-02-27 17:48:49.789+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.SimpleSpringPreparerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/preparer/factory/PreparerFactory
2020-02-27 17:48:49.789+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesView$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/request/servlet/ServletRequest
2020-02-27 17:48:49.790+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.SpringWildcardServletTilesApplicationContext from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/request/servlet/ServletApplicationContext
2020-02-27 17:48:49.790+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.SpringLocaleResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/locale/impl/DefaultLocaleResolver
2020-02-27 17:48:49.791+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesConfigurer$SpringTilesContainerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/factory/BasicTilesContainerFactory
2020-02-27 17:48:49.791+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesViewResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/request/render/Renderer
2020-02-27 17:48:49.792+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesConfigurer$SpringTilesInitializer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/startup/DefaultTilesInitializer
2020-02-27 17:48:49.792+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesView$2 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/request/servlet/ServletRequest
2020-02-27 17:48:49.793+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles3.TilesConfigurer$CompositeELResolverImpl from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: javax/el/CompositeELResolver
2020-02-27 17:48:49.793+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.xml.MarshallingView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/springframework/oxm/Marshaller
2020-02-27 17:48:49.794+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.xml.MappingJackson2XmlView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: com/fasterxml/jackson/dataformat/xml/XmlMapper
2020-02-27 17:48:49.794+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.groovy.GroovyMarkupConfig from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/text/markup/MarkupTemplateEngine
2020-02-27 17:48:49.795+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.groovy.GroovyMarkupView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/text/Template
2020-02-27 17:48:49.795+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.groovy.GroovyMarkupConfigurer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/text/markup/TemplateConfiguration
2020-02-27 17:48:49.796+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.groovy.GroovyMarkupConfigurer$LocaleTemplateResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: groovy/text/markup/TemplateResolver
2020-02-27 17:48:49.799+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.SpringBeanPreparerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/preparer/PreparerFactory
2020-02-27 17:48:49.800+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.TilesConfigurer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/TilesApplicationContext
2020-02-27 17:48:49.800+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.TilesView from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/TilesApplicationContext
2020-02-27 17:48:49.801+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringCompleteAutoloadTilesInitializer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/extras/complete/CompleteAutoloadTilesInitializer
2020-02-27 17:48:49.801+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringCompleteAutoloadTilesContainerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/extras/complete/CompleteAutoloadTilesContainerFactory
2020-02-27 17:48:49.801+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.TilesConfigurer$TilesElActivator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/evaluator/AttributeEvaluator
2020-02-27 17:48:49.802+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.AbstractSpringPreparerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/preparer/PreparerFactory
2020-02-27 17:48:49.802+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.SimpleSpringPreparerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/preparer/PreparerFactory
2020-02-27 17:48:49.803+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.TilesView$1 from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/servlet/context/ServletTilesRequestContext
2020-02-27 17:48:49.803+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.SpringWildcardServletTilesApplicationContext from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/servlet/context/ServletTilesApplicationContext
2020-02-27 17:48:49.803+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.SpringLocaleResolver from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/locale/impl/DefaultLocaleResolver
2020-02-27 17:48:49.804+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesContainerFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/factory/BasicTilesContainerFactory
2020-02-27 17:48:49.804+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load org.springframework.web.servlet.view.tiles2.TilesConfigurer$SpringTilesInitializer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/apache/tiles/startup/AbstractTilesInitializer
2020-02-27 17:48:50.173+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.listener.HighAvailabilityClusterListener from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/cluster/protocol/cluster/ClusterListener
2020-02-27 17:48:50.174+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.listener.CausalClusterListener from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/causalclustering/discovery/CoreTopologyService$Listener
2020-02-27 17:48:50.175+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.bootstrap.RuntimeKernelExtensionFactory$Dependencies from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:50.175+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.bootstrap.RuntimeKernelExtensionFactory from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/extension/KernelExtensionFactory
2020-02-27 17:48:50.176+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.bootstrap.RuntimeKernelExtension from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/Pair
2020-02-27 17:48:50.177+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.config.FluentRuntimeConfiguration from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:50.182+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.config.Neo4jConfigBasedRuntimeConfiguration from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:50.182+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.config.BaseRuntimeConfiguration from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/kernel/configuration/Config
2020-02-27 17:48:50.189+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.BaseGraphAwareRuntime from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/graphdb/event/KernelEventHandler
2020-02-27 17:48:50.192+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.TxDrivenRuntime from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/graphdb/event/TransactionEventHandler
2020-02-27 17:48:50.192+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.DatabaseRuntime from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/graphdb/event/TransactionEventHandler
2020-02-27 17:48:50.193+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.runtime.ProductionRuntime from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/graphdb/event/TransactionEventHandler
2020-02-27 17:48:50.205+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.tx.executor.input.AllNodesWithLabel from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/PrefetchingIterator
2020-02-27 17:48:50.206+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.tx.executor.input.TransactionalInput from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/PrefetchingIterator
2020-02-27 17:48:50.206+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.tx.executor.input.AllRelationships from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/PrefetchingIterator
2020-02-27 17:48:50.207+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.tx.executor.input.AllNodes from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/PrefetchingIterator
2020-02-27 17:48:50.807+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.tx.event.improved.entity.snapshot.RelationshipSnapshotIterator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/PrefetchingIterator
2020-02-27 17:48:50.808+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.tx.event.improved.entity.snapshot.LabelSnapshotIterator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/PrefetchingIterator
2020-02-27 17:48:50.809+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.tx.event.improved.entity.filtered.FilteredPropertyKeyIterator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/PrefetchingIterator
2020-02-27 17:48:50.810+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.tx.event.improved.entity.filtered.FilteredRelationshipIterator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/graphaware-server-all-3.5.14.55.jar: org/neo4j/helpers/collection/PrefetchingIterator
2020-02-27 17:48:51.384+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.module.uuid.generator.SequenceIdGenerator from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/uuid-3.5.14.55.19.jar: org/neo4j/graphdb/PropertyContainer
2020-02-27 17:48:51.392+0000 WARN [o.n.k.a.p.GlobalProcedures] Failed to load com.graphaware.module.uuid.index.ExplicitIndexer from plugin jar /Users/arulmurugan/neo4j_of/neo4j-community-4.0.0/plugins/uuid-3.5.14.55.19.jar: org/neo4j/graphdb/PropertyContainer

Add the possibility to add labels other than in a config file

Hello,

First of all thank you for these amazing GraphAware modules.

Do you intend to have another way to manage which labels are assigned the uuid strategy, like for example an api endpoint ?

It could be useful for example when we want to define the id strategy to use in the model class of our application.

Thanks.

Cheers,

Christophe

Prepend string to UUIDs on creation?

Hello everyone, thanks for the cool plugin! I have implemented it in our organisation and have some questions.

Before neo4j-uuid, we were generating our own id like CREATE (Project {id: 'project_abc123....'}).
The id property we have always used is the concatenation of project_ + uuid and we do the same for other nodes, e.g. user_<uuid>, subscription_<uuid> and so on...

Is there any way we can prepend a different string to uuid for each specific node? It would be awesome to be able config file similar to:

#optional, default is uuid:
com.graphaware.module.UIDM.uuidPrefix=[[Project, _project], [User, _user], ...etc]

Thank you so much for any help!

Neo4j become read only after jvm heap error

Hi,
I'm using neo4j-uuid with neo4j-desktop on version 3.4.9.
I'm trying to create about 30M nodes using query parameters in python by dividing it into small batches containing 5000 nodes. The insertion is fast in the beginning and slowing down after 20 batches, the neo4j throwed a OutOfMemory exception and restarted. Then I've found that the neo4j database cannot executing any create operation and delete operations. When I disabled uuid plugin, the database recovered to normal condition. The read-only problem returned when I enabled the uuid plugin.

I wonder how can I recover the uuid in my database, Thanks!

Can't use the package with version 2.3.0-M02

I did a migration from 2.2.5 to 2.3.0-M02 and I had to comment these lines in order to restart the server,

com.graphaware.runtime.enabled=true

com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper

I cannot generare UUID at the moment of node creation.

Question: uniqueness

I am just curious if this extension can always guarantee uniqueness for uuid properties.

Thanks.

Can't seem to initialize correctly

Hi,

I'm trying to use this in Embedded Mode, and am running into difficulties.

The GraphAwareRuntime seems to get successfully started, as this runs without problems:

RuntimeRegistry.getRuntime(this.neo4jdb).waitUntilStarted();

But then this assertion fails:

try (Transaction tx = this.neo4jdb.beginTx())
{
    assert this.neo4jdb.index().existsForNodes("uuidIndex");
}

and of course the created nodes have no uuid property.

My neo4j.properties contains

com.graphaware.runtime.enabled=true
com.graphaware.module.UIDM.1=com.graphaware.module.uuid.UuidBootstrapper
com.graphaware.module.UIDM.uuidProperty=uuid
com.graphaware.module.UIDM.uuidIndex=nodeIndex

Any ideas what I might be doing wrong?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.