hateoas Questions

4

I am attempting to use spring-data-mongodb with the spring-hateoas and am getting a javax.xml.bind.MarshalException exception through testing. How can I get around this issue? Are there annotations...
Misdemean asked 23/4, 2014 at 4:47

3

Solved

I am using Swagger for my ASP.NET Core API using Swashbuckle which describes my API in a separate document and provides a nice UI for all of this information. Are there any advantages of using som...
Obnubilate asked 14/4, 2016 at 9:35

5

Solved

I am working on an enterprise system that will utilise a RESTful web service between mobile clients and a central server. As RESTful as possible, let's say. My question relates to HATEOAS (hyperme...
Ambassadress asked 9/9, 2009 at 3:39

9

Solved

A large amount of what I thought I knew about REST is apparently wrong - and I'm not alone. This question has a long lead-in, but it seems to be necessary because the information is a bit scattered...
Stoker asked 22/7, 2009 at 9:41

2

Solved

I'm building a REST API. I have a domain model composed of beans than can't extend ResourceSupport. Which is the best way to expose them as resources using Spring-HATEOAS? In case that's not possi...
Partlow asked 3/12, 2013 at 10:15

2

Solved

I finished successfully the angular2 "tour of heroes" starter tutorial. Then I build an api based on symfony3, FosRestBundle and BazingaHateoasBundle as backend. Now nearly everything works, but on...
Interpenetrate asked 29/3, 2016 at 9:38

3

Edit 14/08/14 13:29 My next conclusion is that the hal+json format produced from my @RepositoryRestResource CrudRepository is incorrect. The tutorial (http://spring.io/guides/gs/accessing-data-re...
Huffish asked 13/8, 2014 at 10:54

4

I am currently creating a REST-API for a project and have been reading article upon article about best practices. Many seem to be against DTOs and simply just expose the domain model, while o...
Marquardt asked 23/3, 2016 at 9:40

3

Solved

Question is, what's the difference between Spring HATEOAS versus Spring Data Rest ? I feel both can do the same, and Spring Data Rest (as part of Spring Data) seems a bit more alive. https://gith...
Merla asked 22/10, 2013 at 9:34

1

Solved

I have a parent resource called the AdminResource and a child resource called the AdminModuleResource. The resource of the parent is correctly fitted with HATEOAS links: { "firstname" : "Stephan...
Signor asked 1/9, 2014 at 9:9

1

Solved

I am using Spring HATEOAS in my web application. My application runs behind a Nginx webserver. I am sending following url with HTTPS header GET https://national.usa.com/testapp-rest/api/user/654rt...
Neighbor asked 26/11, 2015 at 15:53

2

Solved

I'm trying to implement HATEOAS in my ASP rest API, changing the ReferenceResolverProvider. The problem is, that depending on which controller I use, I'd like to use different ReferenceResolvers, ...
Jadajadd asked 31/10, 2015 at 19:37

6

For a SaaS startup I'm involved in, I am building both a RESTful web API and a couple of client apps on different platforms that consume it. I think I've got the API figured out, but now I'm turnin...
Unicef asked 9/2, 2012 at 1:8

1

We are using HATEOAS to great effect however we have been looking at performance and getting very poor results from the building of the links, namely code which looks like this resource.add(linkT...
Dost asked 21/11, 2014 at 10:5

1

I have an interesting problem. My data-model is the following: Type A: @Entity @JsonIgnoreProperties(ignoreUnknown = true) public class A { @Id @GeneratedValue(strategy = GenerationType.AUTO) ...

2

Solved

I have this question that has been going around through my head for a while. Lets suppose we have structured our project with backend and frontend on separate layers. So, from the frontend, we want...
Hildagarde asked 7/10, 2015 at 1:51

5

Solved

I was wondering if there were any features hidden in Angular or exposed by some 3rd-party libraries to easily create HATEOAS-compliant Restful clients. On backend side, I am using Spring Data/REST...
Andesite asked 21/4, 2013 at 1:42

2

Solved

I'm currently reading "Rest in practice" book . I'm unable to understand the following terminology Hypermedia , hypermedia format, hypermedia controls, Domain application protocol. The author was s...
Scuffle asked 12/4, 2015 at 1:20

1

Solved

if you have a REST API that is hypermedia-driven (HATEOAS) you can easily change a client's behavior by including or omitting links in the response (_links). That enables a client to completely for...
Loughlin asked 23/7, 2015 at 17:12

2

With @EnableHypermediaSupport(type = HypermediaType.HAL) Spring hateoas provides a simple and convenient way to enable HAL rendering. The annotations triggers some configuration magic which is exp...
Glue asked 10/1, 2014 at 9:48

4

Solved

I've started experimenting with Backbone.js, and was struck by the documentation for the documentation for the url property on Backbone.Model. In particular, I'm building out a REST API that uses ...
Malaspina asked 1/3, 2012 at 16:41

2

Solved

I am creating some APIs using apiary, so the language used is JSON. Let's assume I need to represent this resource: { "id" : 9, "name" : "test", "customer_id" : 12, "user_id" : 1, "store_id"...
Timoshenko asked 22/6, 2015 at 13:51

3

Solved

I would like to design a RESTful search URI using query parameters. For example, this URI returns a list of all users: GET /users And the first 25 users with the last name "Harvey": GET /us...
Selfexpression asked 16/5, 2011 at 19:17

1

Solved

I am trying to get my head around HATEOAS. Let's work through an example. A client loads up a browser to getemails.com. To make it simple, let's assume that a call to getemails.com, hits the serv...
Rounding asked 11/6, 2015 at 4:7

3

This is intended as a follow up question to RESTful API: Where should I code my workflow? A brief summary of the question (adapted to fit my question a bit better) would be something like this: Ea...
Tsarevna asked 24/5, 2015 at 14:50

© 2022 - 2024 — McMap. All rights reserved.