这是一个耍java的项目
Spring guides:https://spring.io/guides
p-connect-model
在项目根目录p-connect目录下面执行:
mvn install
使用maven编译打包,将p-connect-web下生成的war包,可以直接用java -jar PConnect*.war启动自服务运行,放在tomcat下运行都行,请使用tomcat9+.
下回分解...
- spring mvc
- hibernate
- mysql
- OrientDB图库
- TinkerPop3
- RabbitMQ
org.apache.maven.plugins:maven-enforcer-plugin
经过一番折磨,终于敲定了使用TinkerPop3 Java (native) API to work with OrientDB。
心路:
罪过罪过,一开始想着spring的便利,就想用OrientDB Spring Data,想着这个可能会更偷懒,但是没想到,这东东把源码下载下来折腾了两个小时,硬是没办法把源码运行起来,最后只能省省用java api,没想到当我看到java api的代码的一瞬间,感觉前面花的时间白费了,这个java api真好用的感觉。
心路:
按照官网示例(http://projects.spring.io/spring-cloud/)做不下去,说maven仓库找不到对应的版本jar。所以暂时搁置。
后来发现Gateway的老版本可以用。
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-gateway</artifactId>
<version>1.0.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
又发现spring-cloud-starter-gateway不能用,还是暂时搁置。