halbuilder icon indicating copy to clipboard operation
halbuilder copied to clipboard

Java based builder for the Hal specification http://stateless.co/hal_specification.html

Results 4 halbuilder issues
Sort by recently updated
recently updated
newest added

This isn't really an issue/problem with HalBuilder - but I thought you would know the answer ... How are templated URI formatted when there are optional parameters? For example: domain.com/find{?query}{?page}...

There a typo in one of your examples in the documentation: .withLink("/todo-list/search;{searchterm}", "td:search",) the last comma shouldn't be there.

This isn't so much an issue as a question, how does HAL expect links that require more than a simple {} template to be handled? ie: a form.

Add support for simple resource views, which allow you to generate a sub-set of the resource in question. ``` public class ResourceView { private List names; private List matches; public...