- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请参阅以下实体。
Person Entity
@NodeEntity
public class Person {
@GraphId Long personId;
private String name;
private String surname;
@Relationship(type = "ATTENDS", direction = Relationship.OUTGOING)
private Set<Event> events;
Attends Entity
@RelationshipEntity(type = "ATTENDS")
public class Attends {
@GraphId
private Long id;
@StartNode
private Person person;
@EndNode
private Event event;
private Date attendingDate;
Event Entity
@NodeEntity
public class Event {
@GraphId
private Long eventId;
private String eventName;
@Relationship(type = "ATTENDS", direction = Relationship.INCOMING)
private Set<Person> persons;
Here is my API
/persons/{personId}/参加
我想返回一个包含与所提供的 ID 相关的所有对象的列表,在下面的示例中它将是一个事件列表。
[{
"attends":{
"attendsId":"1234",
"startDate":"98098098",
"endDate":"098098098",
event:{ "eventId":"1234", "name":"ComicCon" }
},
"attends":{
"attendsId":"1235",
"startDate":"984548098",
"endDate":"45454545",
event:{ "eventId":"1235", "name":"AWS Summit" }
}]
我尝试以下查询但没有得到结果,
List<Attends> findByPersonPersonId(Long personId);
那么如何通过查询得到这个结果呢?
请指导,谢谢。
最佳答案
@NodeEntity
public class Person {
@GraphId Long id;
private String personId;
private String name;
private String surname;
@Relationship(type = "ATTENDS", direction = Relationship.OUTGOING)
private Set<Attends> attendedEvents =new HashSet<Attends>();
}
@NodeEntity
public class Event {
@GraphId
private Long id;
private String eventId;
private String eventName;
@Relationship(type = "ATTENDS", direction = Relationship.INCOMING)
private List<Attends> attendedEvents = new ArrayList<Attends>();
}
@RelationshipEntity(type = "ATTENDS")
public class Attends {
@GraphId
private Long id;
private String attendId;
@StartNode
private Person person;
@EndNode
private Event event;
private Date attendingDate;
}
@Repository
public interface PersonRepository extends GraphRepository<Person>{
Person findByPersonId(String personId);
}
public class PersonServiceTest extends AbstractTest{
@Autowired
PersonRepository personRepository;
@Test
public void save(){
Person person = new Person();
person.setName("Person1");
person.setPersonId(UUID.randomUUID().toString());
person.setSurname("Surname1");
Event event1 = new Event();
event1.setEventId(UUID.randomUUID().toString());
event1.setEventName("Event1");
Event event2 = new Event();
event2.setEventId(UUID.randomUUID().toString());
event2.setEventName("Event2");
Attends attends1 = new Attends();
attends1.setAttendId(UUID.randomUUID().toString());
attends1.setAttendingDate(new Date());
attends1.setPerson(person);
attends1.setEvent(event1);
Attends attends2 = new Attends();
attends2.setAttendId(UUID.randomUUID().toString());
attends2.setAttendingDate(new Date());
attends2.setPerson(person);
attends2.setEvent(event2);
person.getAttendedEvents().add(attends1);
person.getAttendedEvents().add(attends2);
personRepository.save(person);
}
@Test
public void get(){
Person person = personRepository.findByPersonId("ebc17b4b-2270-4e78-ac68-87bce5444ef4");
person.getAttendedEvents().forEach(attendedEvent -> {
System.out.println(attendedEvent.getEvent());
});
}
}
关于java - 使用 Neo4j 查询的 Spring 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38474704/
我已经在 OSX 上安装了 Docker 并下载了 neo 镜像。当我运行它时(使用图像主页中的 args),一切似乎都正常,但日志的最后几行表明如下: 00:20:39.662 [main] INF
我的正则表达式在 neos 项目中不能正常工作。DD/MM/YYYY 的正则表达式(仅限 19XX-20XX) var date_regex = /^(0[1-9]|1\d|2\d|3[01])\/(
Neo 4j可以与HDFS / Hadoop集成吗?在处理涉及许多关系且每秒具有大量事务的大型数据集时,通常使用Hadoop来提高Neo 4j的处理能力。 最佳答案 这是一个非常广泛的问题。也许考虑提
我尝试在 NEO 环境中使用 TenantAccessor。TenantAccessor.getCurrentTenant().getTenantId() 生成的 TenantId 作为 GUID 返
我下载了Neoclipse Source并下载了 Neo4J source 。但是 Neo4J 源文件中找不到 Neoclipse 源文件引用的某些类。它们已被弃用吗?我可以获得 Neoclipse
进程文件: neo or neo.exe 进程名称: Price Patrol 进程类别:存在安全风险的进程 英文描述: neo.exe is the execuatble for Pric
load csv with headers from 'file:///C:/Users/user/Desktop/Neo4J' as row Create (:State_Code {state_c
如何在 SAPUI5 应用程序的运行时为 neo-app.json 文件的 routes 部分定义新条目?例如在 Component.js 内部。 例如,我想将以下条目添加到文件中,或者将一些代码添加
我最近将一台计算机变成了 Ubuntu 服务器。我已经按照下面的文章 http://neos.readthedocs.io/en/stable/GettingStarted/Installation.
我正在尝试了解如何使用 NEOS Server for SCIP .我已经阅读了有关 CPLEX LP file format 的教程.但我仍然得不到任何结果。 让我们以该教程中提供的示例为例: Ma
关于这一年Bubble Cup (完)有问题NEO (我无法解决),它要求 给定一个包含 n 个整数元素的数组。我们把它分成几个部分(可能是1个),每个部分都是一个连续的元素。这种情况下的 NEO 值
我的 Rails 应用程序必须使用 Neo4j。所以我开始安装 neo4j 服务器。我按照步骤安装 here在 Linux 上。 但是当我运行的时候 ./bin/neo4j console 它给了 E
我刚从 windows 10 切换到 arch linux我想使用 (Neo)Vim 作为我的代码编辑器我已经完成了自动编译和模糊查找器但我不知道如何在 (Neo)Vim 中调试 任何帮助! 最佳答案
我想问一下,如何使用Spring boot找到Dijkstra。 我目前使用 spring-boot-starter-data-neo4j 库将 Neo4j 与我的 java 类映射。 我现在想使用
我正在尝试创建一个可以从 U2F token (例如 Java 语言的 Yubikey Neo)检索公钥和私钥的应用程序。我尝试在控制台中使用简单的扫描仪从 Yubikey Neo 获取任何内容,但它
我想用摩托罗拉68000汇编器写一个程序,目标平台是Neo Geo(九十年代的游戏机);这个问题很严重,我有一个我想实现的特定项目并且我有编程经验(虽然我现在主要是 Perl/R 编程,但我以前只接触
我使用自定义 Web 服务作为 neo4j 的非托管扩展。 这是 Neo4j 提供的详细信息,我已遵循该详细信息并创建了自己的非托管扩展。 http://neo4j.com/docs/stable/s
Typo3 Neos 是否原生支持元素的响应行为?例如像 css 网格类(col-sm-?? 或 col-md-??)这样的 Bootstrap ,或者我可以使用 Neos 通过 hidden-xs
我是为嵌入式板构建自定义 Linux 操作系统的新手 - 所以请忽略我的无知。 我有一个名为 NanoPi NEO 的开发板,它具有定制的 Debian Linux。现在开发板附带一个 .img 文件
我正在尝试使用脚本在 NEO4j db 中导入 csv 文件: LOAD CSV FROM "file:///dataframe6.txt" AS line RETURN count(*) 但我收到以
我是一名优秀的程序员,十分优秀!