Huawei, the global ICT leader, today announced a new research partnership with Trinity College Dublin as part of its growing R&D footprint in Ireland. At an event at Trinity College Dublin, Guo Ping, Huawei Deputy Chairman & Rotating CEO, also announced the expansion of the company’s Cork R&D operation, which is growing from a small team to nearly 20 highly-skilled staff. http://bit.ly/2nNL0KJ #Huawei #BigData #AI
Building Microservices With Netflix OSS, Apache Kafka, and Spring Boot – Part 2
After Part 1 of this series, here is what comes next:
Although we are not going to use the distributed features of Kafka for the test, it is still a distributed system and is built to use Zookeeper to track the status of its cluster nodes, topics, partitions, etc. So before using Kafka, it is necessary to have Zookeeper installed. The following commands are for installing Zookeeper and Kafka on Ubuntu 16.04. https://goo.gl/SzHN5c #DataIntegration #ML
RESTful JPA One-liners With Rapidoid
ICYDK: Let’s see how easy it is to implement RESTful services with simple JPA CRUD functionality with Rapidoid, the almighty web framework.
Bootstrapping JPA and Implementing RESTful Services
import org.rapidoid.jpa.JPA; import org.rapidoid.setup.App; import org.rapidoid.setup.On; public class JPADemo { public static void main(String[] args) { App.run(args).jpa(); // bootstrap JPA On.get(“/books”).json(() -> JPA.of(Book.class).all()); On.get(“/books/{id}”).json((Long id) -> JPA.get(Book.class, id)); On.post(“/books”).json((Book b) -> JPA.insert(b)); On.put(“/books/{id}”).json((Book b) -> JPA.update(b)); } }
Of course, we also need some JPA entity (which is over-simplified for this demonstration): https://goo.gl/tRoAvD #DataIntegration #ML
