Package and Description |
---|
io.micronaut.http.hateos
Use the classes in
io.micronaut.http.hateoas instead |
Interface and Description |
---|
io.micronaut.core.beans.BeanInfo
Use
BeanIntrospection instead |
io.micronaut.http.hateos.Link
Use
Link instead |
io.micronaut.http.hateos.Link.Builder
Use
Link.Builder instead. |
io.micronaut.http.hateos.Resource
Use
Resource instead |
Class and Description |
---|
io.micronaut.http.hateos.AbstractResource
Use
AbstractResource instead |
io.micronaut.http.server.types.files.AttachedFile
Use
instead . This class conflates the source of the data with the type of
response being sent. This assumes the file should be sent as an attachment while StreamedFile does not.
The SystemFile class now behaves the same as StreamedFile by defaulting to inline with a method
to call to set it to be attached.
new AttachedFile(file, name) -> new SystemFile(file).attach(name)
new AttachedFile(file) -> new SystemFile(file).attach(file.getName()) |
io.micronaut.core.beans.Introspector
Replaced by
BeanIntrospector |
io.micronaut.http.hateos.JsonError |
io.micronaut.core.beans.PropertyDescriptor
Use
BeanProperty instead |
io.micronaut.http.server.types.files.SystemFileCustomizableResponseType |
io.micronaut.http.hateos.VndError |
Field and Description |
---|
io.micronaut.http.annotation.HttpMethodMapping.DEFAULT_URI
Use
UriMapping.DEFAULT_URI instead |
io.micronaut.views.ViewsRenderer.FILE_SEPARATOR
Use
File.separator directly |
io.micronaut.web.router.DefaultRouteBuilder.HYPHENATED_NAMING_STRATEGY
Dynamic naming conventions are no longer supported
|