纽卡斯尔大学
JayXu6888
这个作者很懒,什么都没留下…
展开
-
NEO4j知识汇总
文章目录MATCHUNWINDMATCHThe MATCH clause allows you to specify the patterns Neo4j will search for in the database. This is the primary way of getting data into the current set of bindings. It is worth reading up more on the specification of the patterns them原创 2020-07-18 19:31:11 · 651 阅读 · 0 评论 -
如何使用LaTeX写论文
LeTeX的学习曲线稍微陡峭,如果你选择用VSCODE去操作,那么配置也是有点麻烦的。所以,强烈推荐OverLeaf,这是一个完美继承了LaTeX的在线网站,对个人用户免费,免去你自己配置一大堆东西的麻烦。并且,它也提供了一大堆论文的模板,满足各个专业的使用需求。比如,我要使用的是LNCS(Lecture Notes in Computer Science)就可以直接在上面找到模板开始你的写作。Bibiliography - BibTeX的使用方法BibTeX就是要使用LaTeX编写论文时,要用到的配原创 2020-07-17 03:42:01 · 1242 阅读 · 0 评论 -
毕设20200529 Spring Boot 1 Spring Boot 2设置默认首页的正确姿势(三种方法) - 如何访问localhost:8080直接打开swagger-ui界面
文章目录方法一:DefaultController实现方法二:使用SpringDefaultView实现2.1 Spring老版本中的写法2.2 Spring5中的正确姿势方法三:配置监听事件直接打开Swagger界面(亲测仅适用于Windows)※需要配置Swagger-ui,并使用Spring Boot 2的看官直接看方法2.2即可。方法一:DefaultController实现首先申明:这个方法适合自己项目里面带的index页面使用,不适合swagger-ui.html使用(跳转不过去,也显示不原创 2020-05-30 04:31:13 · 1401 阅读 · 0 评论 -
Spring Boot2使用Log4j2
文章目录Step1. 排除Spring Boot自带的logging包(logback)Step2. 在resource下面加入log4j2.xml或者log4j2-spring.xmlStep3. 编写log4j2.xmlStep4. 控制台打印彩色日志Step1. 排除Spring Boot自带的logging包(logback)<dependency> <groupId>org.springframework.boot</groupId> <原创 2020-05-30 03:49:51 · 263 阅读 · 0 评论 -
毕设20200528 Neo4jRepository的使用,findAll方法的注意点
Neo4jRepository是继承了Spring data的CrudRepository的,所以是在CrudRepository的基础上针对Neo4j做了扩展的。初步使用的实验是,你能想到的CRUD的方法,基本不用你自己写Cypher(也就是Neo4j的SQL)。比如要模糊查询:MATCH (a:Artifact) WHERE a.artifactId CONTAINS 'red' return a 那么,对应地你只要在你自己定义的Repository中继承Neo4jRepository,就可以原创 2020-05-29 01:42:43 · 2605 阅读 · 1 评论 -
Swagger : i.s.m.p.AbstractSerializableParameter : Illegal DefaultValue null for parameter type integ
Spring Boot 项目里面引入了 Swagger启动报这个错版本2.9.2i.s.m.p.AbstractSerializableParameter : Illegal DefaultValue null for parameter type integer是swagger2.9.2引用的swagger-models 和 swagger-annotations 这两个lib的对应版本有问题1.5.20。这个bug并不影响使用,但是影响观感,因为项目一启动就会报这样一个错。我们可以通过以原创 2020-05-24 19:39:48 · 1717 阅读 · 0 评论 -
毕设20200514 测试远程neo4j连接
@NodeEntity(label = "artifact")//logging level ...public class Artifact implements Serializable { //a predecessor is a artifact that depends on this artifact. //private @Relationship(type = "DEPEND_ON",direction = Relationship.INCOMING) Artifact原创 2020-05-15 08:31:02 · 855 阅读 · 0 评论 -
毕设20200514 sessionFactory创建失败
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'artifactServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with n原创 2020-05-15 06:51:10 · 645 阅读 · 0 评论 -
毕设20200512 Spring Boot项目的Neo4j Session Factory配置
文章目录依赖依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-neo4j</artifactId></dependency>也许有人会说,这边要加嵌入式的neo4j的驱动依赖,或者http、bolt的驱动依赖。其实在spring-boot-starter-data-ne原创 2020-05-12 21:00:20 · 1839 阅读 · 0 评论 -
毕设20200512 Spring Boot项目的AspectJ配置
文章目录依赖注解第一步:第二步依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId></dependency>注解第一步:我们需要在Spring Boot的启动类,或者在我们自己配置的配置类上面加上AspectJ的配置启动类上加注解:@Confi原创 2020-05-12 13:58:15 · 276 阅读 · 0 评论 -
毕设20200512 Neo4j相关测试类报错: Class class aa is not a valid entity class. Please check the entity mapping
问题在测试向Neo4j测试数据写入的时候,报下面这么一个错。是在我增加了Spring Boot项目一大堆项目配置之后出现的问题,比如@EnableAspectJAutoProxy(AspectJ动态代理),还有增加了Neo4j的SessionFactory配置。那么,基本也就能初步确定是这二者之一导致的问题。测试类代码如下:package uk.ac.newcastle.xxx.gavgraph;import org.junit.Test;import org.junit.runner.Ru原创 2020-05-12 13:50:43 · 952 阅读 · 1 评论 -
毕设20200507 - 测试将artifact saveandload 到neo4j数据库报错
java.lang.NoClassDefFoundError: org/eclipse/jetty/server/RequestLog$Writer at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Class.java:26...原创 2020-05-08 07:52:03 · 732 阅读 · 0 评论 -
Maven使用总结
文章目录写作动机未完待续,先码代码了写作动机最近开始搞毕设,内容是和maven库有关的,正好也可以把maven相关的知识点整理一下子,也是个不错的契机吧。未完待续,先码代码了...原创 2020-05-02 00:43:50 · 103 阅读 · 0 评论 -
OpenShift学习 01. OpenShift初体验
目录I. OpenShift是什么?I. OpenShift是什么?原创 2019-11-08 20:23:20 · 372 阅读 · 0 评论 -
Enterprise Middleware 1: 分布式计算概念
ContentsWhat is Middleware?Why Middleware?How to develop a middleware?What is Middleware?Why Middleware?How to develop a middleware?原创 2019-11-04 09:57:03 · 800 阅读 · 0 评论