Lucie Lenglet

Results 3 issues of Lucie Lenglet

I get this error when I execute the binding: ``` Traceback (most recent call last): File "C:\User\U468563\Programs\SublimeText\sublime_plugin.py", line 550, in run_ return self.run(edit, **args) File "BrowserRefresh in C:\User\U468563\Programs\SublimeText\Data\Installed Packages\Browser Refresh.sublime-package",...

OS: Windows

According to the [RFC 7231, section 5.3.2](https://tools.ietf.org/html/rfc7231#section-5.3.2): > The "Accept" header field can be used by user agents to specify response media types that are acceptable. However, when requesting the...

Suppose a Person aggregate and DTO : ```java public class Person extends BaseAggregateRoot { @Identity(handler = UUIDHandler.class) private UUID id; private String name; } ``` ```java public class PersonDTO {...