The documentation below is a combination of DocBook and Javadoc. The docbook is a Maven
- module in our source tree. If you download or check out our source code from GitHub, you
- will find it under the 'docbook' directory. Javadocs are generated automatically from the
- maven build.
-
In release 3.1.0.Final, most of the classes deprecated in the 3.0.x generation of releases are
- deleted or moved to an optional module. For some guidance in upgrading, see Upgrading from RESTEasy
- 2 to RESTEasy 3.
-
-
-
-
Version
-
- {% for release in site.data.releases %}
- {% for detail in release.detail %}
- {% if detail.documentation %}
- {% capture rowClass %}{% cycle 'oddRow', '' %}{% endcapture %}
-
-
-
{{ detail.version }}
-
-
{% if detail.documentation.examples %} examples{% endif %}
diff --git a/docs/all-docs.md b/content/docs/all-docs.md
similarity index 69%
rename from docs/all-docs.md
rename to content/docs/all-docs.md
index 2ef2647..39c662c 100644
--- a/docs/all-docs.md
+++ b/content/docs/all-docs.md
@@ -1,5 +1,5 @@
---
layout: doc-listing
title: Documentation
-permalink: /docs/all/
+link: /docs/all/
---
diff --git a/docs/grpc/grpc-bridge.adoc b/content/docs/grpc/grpc-bridge.adoc
similarity index 96%
rename from docs/grpc/grpc-bridge.adoc
rename to content/docs/grpc/grpc-bridge.adoc
index 425748a..6c0acbf 100644
--- a/docs/grpc/grpc-bridge.adoc
+++ b/content/docs/grpc/grpc-bridge.adoc
@@ -1,10 +1,12 @@
-= gRPC Bridge Project: User Guide
-:page-layout: default
-:page-permalink: /docs/grpc/
+---
+title: "gRPC Bridge Project: User Guide"
+layout: default
+link: /docs/grpc
+---
:toc:
:sectanchors:
-
+{|
The RESTEasy *gRPC Bridge Project* (aka *resteasy-grpc*) project
(https://github.com/resteasy/resteasy-grpc) has been developed to
enable communication between gRPC clients and Jakarta REST servers. The
@@ -35,6 +37,7 @@ https://developers.google.com/protocol-buffers[protobuf], a data
definition framework, also from Google, which has an IDL and a precisely
defined wire format. For example,
+[source,protobuf]
----
syntax = "proto3";
package org.greet;
@@ -52,6 +55,7 @@ distinct integer; e.g., `s` is associated with 1, which supports the
translation to and from the wire format. When it is compiled by the protobuf compiler (**protoc**),
the output is a several hundred line class called `org.greet.Greet_proto`:
+[source,java]
----
package org.greet;
@@ -78,6 +82,7 @@ the output is a several hundred line class called `org.greet.Greet_proto`:
The `Builder` class supports creating a `Greeting`
+[source,java]
----
org.greet.Greet_proto.Greeting.Builder builder = org.greet.Greet_proto.Greeting.newBuilder();
Greeting greeting = builder.setS("foo").build();
@@ -88,6 +93,7 @@ and the `getS()` method supports retrieving the contents of the `Greeting`.
gRPC extends the protobuf IDL with a syntax for defining methods. For
example,
+[source,protobuf]
----
syntax = "proto3";
package org.greet;
@@ -111,6 +117,7 @@ extended file is compiled by protoc together with its gRPC plugin, the result, i
addition to `org.greet.Greet_proto`, is the class
`org.greet.GreetServiceGrpc`, also with hundreds of lines:
+[source,java]
----
public final class GreetServiceGrpc {
...
@@ -140,6 +147,7 @@ the client side to invoke the methods defined in the IDL file. In
this case, there is only one, `greet()`, and an invocation would look
something like:
+[source,java]
----
private static String target = "localhost:8082";
private static ManagedChannel channel;
@@ -172,6 +180,7 @@ the method is not implemented. The idea is that the developer should
create a class extending `GreetServiceImplBase` with implementing
methods. A simple example is
+[source,java]
----
@Override
public void greet(org.greet.Greet_proto.gString request, StreamObserver responseObserver) {
@@ -188,6 +197,7 @@ message cannot be determined until runtime, and protobuf has a general
purpose type, `google.protobuf.Any`, which can hold any type of message.
The definition of `Any` is
+[source,protobuf]
----
message Any {
string type_url = 1;
@@ -201,6 +211,7 @@ https://developers.google.com/protocol-buffers/docs/proto3. The type
of the message stored in the `value` is described by the URL in the
`type_url` field. Consider, for example,
+[source,java]
----
gString gs = gString.newBuilder().setValue("abc").build();
Message m = Any.pack(gs);
@@ -209,6 +220,7 @@ of the message stored in the `value` is described by the URL in the
The output is
+[source,protobuf]
----
type_url: "type.googleapis.com/org.greet.gString"
value: "\272\001\003abc"
@@ -224,6 +236,7 @@ the `value` field.
The advantage of the `type_url` field is that it can be used to retrieve
the value of the `Any`. Consider, for example, the code
+[source,java]
----
Any any = null;
if (/* some predicate */) {
@@ -238,6 +251,7 @@ the value of the `Any`. Consider, for example, the code
Then, the `Any` can be unpacked as follows:
+[source,java]
----
/* get any */
if (any.getTypeUrl().endsWith("org.greet.gString")) {
@@ -282,6 +296,7 @@ additional classes, which we will discuss in <>.
Given `org.greet.Greeting`
+[source,java]
----
package org.greet;
@@ -296,6 +311,7 @@ Given `org.greet.Greeting`
and `org.greet.Greeter`
+[source,java]
----
package org.greet;
@@ -315,6 +331,7 @@ and `org.greet.Greeter`
`JavaToProtobufGenerator` will generate the IDL file Greet.proto:
+[source,protobuf]
----
syntax = "proto3";
package org.greet;
@@ -436,6 +453,7 @@ entity parameter itself, things like headers, cookies, query
parameters, etc. `GeneralEntityMessage`
can accomodate all of those. Also, consider the element
+[source,protobuf]
----
oneof messageType {
gString gString_field = 5;
@@ -449,12 +467,14 @@ value whose type is one of the types listed in the
in the list (other than the `FormMap` field for form data, which isn't used here).
But suppose there were another rpc method with the comment
+[source,protobuf]
----
// /float gFloat gInteger GET sync
----
Then the `oneof` field would look like
+[source,protobuf]
----
oneof messageType {
gString gString_field = 5;
@@ -490,6 +510,7 @@ structure being derived from another structure.
accumulating the fields in a single class. Let's define the class
`GeneralGreeting`
+[source,java]
----
package org.greet;
@@ -505,6 +526,7 @@ accumulating the fields in a single class. Let's define the class
and extend `Greeter`:
+[source,java]
----
@Path("")
public class Greeter {
@@ -525,6 +547,7 @@ and extend `Greeter`:
Then `JavaToProtobufGenerator` will make the following adjustments to
Greet.proto:
+[source,protobuf]
----
...
service GreetService {
@@ -577,6 +600,7 @@ uses two devices to bridge the gap.
For example, consider
+[source,java]
----
package x.y;
@@ -607,6 +631,8 @@ For example, consider
----
where `x.y.Grimble` is
+
+[source,java]
----
public class Grimble {
T t;
@@ -614,6 +640,7 @@ where `x.y.Grimble` is
----
This leads to the following elements in the .proto file:
+[source,protobuf]
----
// p/grimble/raw x_y___Grimble google.protobuf.Empty GET sync
rpc gr_raw (GeneralEntityMessage) returns (GeneralReturnMessage);
@@ -680,6 +707,8 @@ class `KeySet`, but non-static inner classes are not currently supported by
resteasy-grpc.
Instead, each protobuf translation of a java `Set` looks like
+
+[source,protobuf]
----
// Set: java.util.HashSet
message java_util___HashSet3 {
@@ -700,6 +729,8 @@ appropriate type, in this case, `java.lang.String`, as indicated by the
immediately preceding comment.
A somewhat more complex example is
+
+[source,protobuf]
----
// Set: java.util.Set>
message java_util___Set112 {
@@ -711,6 +742,8 @@ message java_util___Set112 {
Note that the `data` field has type `java_util___HashSet3`, defined above.
Implementations of `java.util.List` look similar. For example,
+
+[source,protobuf]
----
// List: java.util.List
message java_util___List31 {
@@ -729,6 +762,8 @@ message java_util___List30 {
Everything discussed in the section about generic types applies to variants of
`List` and `Set`. For example,
+
+[source,java]
----
package x.y;
@@ -763,6 +798,8 @@ Everything discussed in the section about generic types applies to variants of
}
----
turns into
+
+[source,protobuf]
----
// arraylist/variable java_util___ArrayList17 java_util___ArrayList17 POST sync
rpc arrayListTest1 (GeneralEntityMessage) returns (GeneralReturnMessage);
@@ -811,6 +848,8 @@ but it is currently under reconsideration. Stay tuned for further discussion.
==== Interfaces
Consider
+
+[source,java]
----
@GET
@Path("list/string")
@@ -823,6 +862,7 @@ Given that actual types of the entity `l` or the return value cannot be determin
they are handled as instances of `google.protobuf.Any`. In the .proto file, the
method would be represented as
+[source,protobuf]
----
// list/string google.protobuf.Any google.protobuf.Any POST sync
rpc listTest (GeneralEntityMessage) returns (GeneralReturnMessage);
@@ -831,6 +871,7 @@ method would be represented as
==== Response
Consider the resource method
+[source,java]
----
public Response m() {
if (test()) {
@@ -843,6 +884,7 @@ Consider the resource method
Will it return an `X` or a `Y`? If `test()` is
+[source,java]
----
public boolean test() {
return true;
@@ -861,6 +903,7 @@ an `Object`. This is another case in which the protobuf type
Suppose we add the resource method
+[source,java]
----
@GET
@Path("greet/response")
@@ -870,6 +913,8 @@ Suppose we add the resource method
----
to `org.greet.Greeter`. Then there is a new rpc entry
+
+[source,protobuf]
----
// greet/response gString google.protobuf.Any GET sync
rpc response (GeneralEntityMessage) returns (GeneralReturnMessage);
@@ -877,6 +922,7 @@ to `org.greet.Greeter`. Then there is a new rpc entry
and the oneof field of `GeneralReturnMessage` becomes
+[source,protobuf]
----
oneof messageType {
org_greet___Greeting org_greet___Greeting_field = 4;
@@ -893,6 +939,7 @@ Another case in which we can't statically determine the return type is
when an asynchronous resource method uses the `@Suspended` annotation.
Consider the following method:
+[source,java]
----
@GET
@Path("suspend")
@@ -913,6 +960,7 @@ Consider the following method:
This results in the rpc
+[source,protobuf]
----
// .../suspend gEmpty google.protobuf.Any GET suspended
rpc suspend (GeneralEntityMessage) returns (GeneralReturnMessage);
@@ -940,12 +988,14 @@ methods.
Given the updated version of `org.greet.Greeter`, there will be two
methods in `GreetServiceGrpc` that need to be overridden. For example,
+[source,java]
----
public void greet(org.greet.Greet_proto.GeneralEntityMessage param, StreamObserver responseObserver);
----
will be overridden by
+[source,java]
----
@java.lang.Override
public void greet(org.greet.Greet_proto.GeneralEntityMessage param, StreamObserver responseObserver) {
@@ -994,6 +1044,7 @@ into too much detail, the following steps occur:
Note that the sequence
+[source]
----
org.greet.Greeting (Java class)
-> (translated by JavaToProtobufGenerator) ->
@@ -1014,6 +1065,7 @@ The grpc-bridge class
generates a class like `org.greet.GreetJavabufTranslator` (where the `Greet`
prefix will change), which has three methods
+[source,java]
----
Message translateToJavabuf(Object o);
Message translateToJavabuf(Object o, GenericType genericType);
@@ -1024,6 +1076,7 @@ which do the translations. Without going too deeply into
the details, `GreetJavabufTranslator` has two classes for each message
type; for example,
+[source,java]
----
static class org_greet___Greeting_ToJavabuf implements TranslateToJavabuf { ... }
static class org_greet___Greeting_FromJavabuf implements TranslateFromJavabuf { ... }
@@ -1051,6 +1104,7 @@ highest priority. One strategy available in RESTEasy is to eliminate
*all* built-in providers and then add back any that are necessary. For
example, that can be accomplished in a web.xml file as follows:
+[source,xml]
----
GreetServlet
@@ -1129,6 +1183,8 @@ B. create a Java entity and translate it to javabuf with the `JavabufTranslator`
For example, to create an instance of `java_util___HashSet3`, defined in
<>, one option would be
+
+[source,java]
----
java.util.HashSet set = new java.util.HashSet();
set.add("abc");
@@ -1137,6 +1193,8 @@ GenericType> type
java_util___HashSet3 hashSet3 = (java_util___HashSet3) translator.translateToJavabuf(set, type);
----
and the other would be
+
+[source,java]
----
java_util___HashSet3.Builder builder = java_util___HashSet3.newBuilder();
builder.addData("abc");
@@ -1145,6 +1203,8 @@ java_util___HashSet3 hashSet3 = builder.build();
*Note.* How did we know which javabuf type to use for a given invocation?
It's easy. First, look at the resource method. Suppose we're going to call
+
+[source,java]
----
@Path("hashset/string")
@POST
@@ -1155,6 +1215,8 @@ It's easy. First, look at the resource method. Suppose we're going to call
It's expecting an instance of `HashSet`. Now, we have to figure out
which javabuf type represents `HashSet`. Go to `Greet.proto` and search
on `java.util.HashSet`, which will (eventually) land on
+
+[source,protobuf]
----
// Set: java.util.HashSet
message java_util___HashSet3 {
@@ -1169,33 +1231,41 @@ can see that we need to use a
`GenericType>`.
By the way, if the entity has a raw type, we would use the `JavabufTranslator` method
+
+[source,protobuf]
----
Message translateToJavabuf(Object o);
----
[start=2]
2. The next step would look like
+
+[source,java]
----
GeneralEntityMessage.Builder messageBuilder = GeneralEntityMessage.newBuilder();
GeneralEntityMessage gem = messageBuilder.setJavaUtilHashSet3Field(hashSet3).build();
----
[start=3]
3. Then there would be a call to the gRPC stub
+[source,java]
----
GeneralReturnMessage grm = blockingStub.hashSetTest3(gem);
----
[start=4]
4. and finally, the result is extracted
+[source,java]
----
java_util___HashSet3 response = grm.getJavaUtilHashSet3Field();
----
[start=5]
5. and translated back to the Java
+[source,java]
----
HashSet result = (org.greet.Greeting) translator.translateFromJavabuf(response);
----
A variation of the client code occurs when the entity and/or result type is
an interface, since they need to be transmitted as `Any` messages. For example,
+[source,java]
----
java.util.List list = new java.util.ArrayList();
list.add("abc");
@@ -1224,6 +1294,7 @@ The examples so far have demonstrated simple call / response semantics.
A few changes are necessary to support SSE streaming. Suppose
`org.greet.Greeter` is extended with method `sseGreet`:
+[source,java]
----
private ArrayList names = new ArrayList();
@@ -1249,6 +1320,7 @@ A couple of additions appear in Greet.proto:
* A new message type is added:
+[source,protobuf]
----
message org_jboss_resteasy_grpc_runtime_sse___SseEvent {
string comment = 1;
@@ -1261,6 +1333,7 @@ message org_jboss_resteasy_grpc_runtime_sse___SseEvent {
* a new rpc entry is added:
+[source,protobuf]
----
// stream gEmpty org_jboss_resteasy_grpc_runtime_sse___SseEvent GET sse
rpc sseGreet (GeneralEntityMessage) returns (stream org_jboss_resteasy_grpc_runtime_sse___SseEvent);
@@ -1272,6 +1345,7 @@ Note that `returns (stream org_jboss_resteasy_grpc_runtime_sse\___SseEvent)` ind
The overriding method in `GreetServiceGrpcImpl` changes to handle
multiple return messages:
+[source,java]
----
@java.lang.Override
public void sseGreet(org.greet.Greet_proto.GeneralEntityMessage param, StreamObserver responseObserver) {
@@ -1321,6 +1395,7 @@ These changes are generated automatically, so no intervention is
required. However, the application code on the client side needs to be
adjusted. It could look, for example, something like this:
+[source,java]
----
Iterator response = blockingStub.sseGreet(gem);
while (response.hasNext()) {
@@ -1338,6 +1413,7 @@ Note, in particular, the treatment of the `data` field. The class
`google.protobuf.Any`, which translates to `com.google.protobuf.Any` in
`Greet_proto`. Note that the method `Any.pack()` has signature
+[source,java]
----
public static Any pack(T message, java.lang.String typeUrlPrefix);
----
@@ -1373,6 +1449,7 @@ project's source JAR is available in an accessible repository. In this
example, we assume the existence of org.greet:greet:0.0.1. To
generate the initial state of the bridge project, run
+[source,bash]
----
mvn archetype:generate -B \
-DarchetypeGroupId=dev.resteasy.grpc \
@@ -1406,6 +1483,7 @@ org.greet:greet:0.0.1 we will get bridge project
org.greet:greet.grpc:0.0.1. At this point, the layout of the
new project is
+[source]
----
+- pom.xml
+- src/main/webapp
@@ -1433,6 +1511,7 @@ Once the new project is created, the pom.xml can be used to copy the
Java classes from the target project and generate the intermediary
classes:
+[source,bash]
----
mvn clean install
----
@@ -1447,6 +1526,7 @@ There are also some optional parameters:
The syntax for the "classes" parameter is
+[source]
----
(DIR ":" CLASSNAME) ("," DIR ":" CLASSNAME)*
----
@@ -1458,12 +1538,14 @@ where
For example,
+[source,bash]
----
mvn -Dclasses=/home/bob/greet/src/java/main:org.greet.Extra clean install
----
When the project is built, the layout is as follows:
+[source]
----
+- pom.xml
+- src/main/java
@@ -1514,12 +1596,13 @@ Going a step further, mvn deploy can deploy the WAR and JAR (where the
deployjar bash script manages the latter) to a remote repository. Note
that deployjar hard codes the JBoss repositories as follows:
+[source,basgh]
----
- if [ ${RELEASE_TYPE} == "snapshot" ]; then
- URL=https://repository.jboss.org/nexus/content/repositories/snapshots/
- else
- URL=https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/
- fi
+if [ ${RELEASE_TYPE} == "snapshot" ]; then
+ URL=https://repository.jboss.org/nexus/content/repositories/snapshots/
+else
+ URL=https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/
+fi
----
These presumably need to be modified. Maven repository configuration is
@@ -1556,15 +1639,17 @@ will accomplish the other initial requirement, which is storing a
reference to the servlet's `jakarta.servlet.ServletContext`. For
example,
+[source,bash]
----
- curl http://localhost:8080/greet.grpc-0.0.1/grpcToJakartaRest/grpcserver/context
+curl http://localhost:8080/greet.grpc-0.0.1/grpcToJakartaRest/grpcserver/context
----
Alternatively, if the generated WAR is not running in an instance of
WildFly with the grpc subsystem,
+[source,bash]
----
- curl http://localhost:8080/greet.grpc-0.0.1/grpcToJakartaRest/grpcserver/start
+curl http://localhost:8080/greet.grpc-0.0.1/grpcToJakartaRest/grpcserver/start
----
will initiate the gRPC server runtime.
@@ -1572,6 +1657,7 @@ will initiate the gRPC server runtime.
The step can also be done programmatically, as in `org.jboss.restesy.test.grpc.AbstractGrpcToJakartaRESTTest`
in the resteasy-grpc-testsuite in resteasy-grpc:
+[source,java]
----
try (
Client client = ClientBuilder.newClient();
@@ -1630,12 +1716,12 @@ servlet container is a common environment for running Jakarta REST
applications, and, in that case, the spec mandates the availability by
injection of certain servlet related types:
-----
- The @Context annotation can be used to indicate a dependency on a Servlet-defined
- resource. A Servlet-based implementation MUST support injection of the following
- Servlet-defined types: ServletConfig, ServletContext, HttpServletRequest, and
- HttpServletResponse.
-----
+_____
+The @Context annotation can be used to indicate a dependency on a Servlet-defined
+resource. A Servlet-based implementation MUST support injection of the following
+Servlet-defined types: ServletConfig, ServletContext, HttpServletRequest, and
+HttpServletResponse.
+_____
RESTEasy supports servlets, and, accordingly, grpc-bridge creates a
servlet environment for Jakarta REST resources to execute in, including
@@ -1659,6 +1745,7 @@ many cases, though, `HttpServletRequest` relies on the client to spell
out any information needed for a given computation. Recall that
`GeneralEntityMessage` has slots for all kinds of information:
+[source,protobuf]
----
message GeneralEntityMessage {
ServletInfo servletInfo = 1;
@@ -1675,6 +1762,7 @@ out any information needed for a given computation. Recall that
Some of these fields, e.g., cookies and headers, are naturally supplied
by the client. On the other hand, the information in
+[source,protobuf]
----
message ServletInfo {
string characterEncoding = 1;
@@ -1686,4 +1774,4 @@ by the client. On the other hand, the information in
which would normally come from the network connection, must be supplied
explicitly as part of the invocation.
-
+|}
diff --git a/downloads.md b/content/downloads.md
similarity index 100%
rename from downloads.md
rename to content/downloads.md
diff --git a/index.md b/content/index.md
similarity index 100%
rename from index.md
rename to content/index.md
diff --git a/mailinglists.html b/content/mailinglists.html
similarity index 100%
rename from mailinglists.html
rename to content/mailinglists.html
diff --git a/_posts/2016-09-13-new-resteasy-blog.md b/content/posts/2016-09-13-new-resteasy-blog.md
similarity index 70%
rename from _posts/2016-09-13-new-resteasy-blog.md
rename to content/posts/2016-09-13-new-resteasy-blog.md
index 291e28d..048d65a 100644
--- a/_posts/2016-09-13-new-resteasy-blog.md
+++ b/content/posts/2016-09-13-new-resteasy-blog.md
@@ -2,25 +2,10 @@
layout: post
title: "New RESTEasy blog"
subtitle: ""
-date: Sep 13, 2016 9:16:00 AM
+date: 2016-09-13 09:16:00
author: Alessio Soldano
---
With Bill Burke having moved to different projects and me now leading RESTEasy, it's time to open up a new project blog area... so here we are :-)
Stay tuned for updates here!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2016-09-13-on-the-road-to-resteasy-310-release.md b/content/posts/2016-09-13-on-the-road-to-resteasy-310-release.md
similarity index 93%
rename from _posts/2016-09-13-on-the-road-to-resteasy-310-release.md
rename to content/posts/2016-09-13-on-the-road-to-resteasy-310-release.md
index 351882f..3db1aa9 100644
--- a/_posts/2016-09-13-on-the-road-to-resteasy-310-release.md
+++ b/content/posts/2016-09-13-on-the-road-to-resteasy-310-release.md
@@ -2,7 +2,7 @@
layout: post
title: "On the road to RESTEasy 3.1.0 release..."
subtitle: ""
-date: Sep 13, 2016 12:06:00 P
+date: 2016-09-13 12:06:00
author: Alessio Soldano
---
@@ -17,18 +17,3 @@ We've tagged two 3.1.0 Beta releases so far, both available as artifacts on
If you have some time, consider early checking your projects with the new 3.1.0 and feel free to report back any issue (btw, as a reminder, note we have [new mailing lists](https://resteasy.jboss.org/mailinglists) since some months!). We plan to go CR soon and hopefully release at before the end of October.
Stay tuned :-)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2016-10-03-resteasy-310cr1-is-out.md b/content/posts/2016-10-03-resteasy-310cr1-is-out.md
similarity index 84%
rename from _posts/2016-10-03-resteasy-310cr1-is-out.md
rename to content/posts/2016-10-03-resteasy-310cr1-is-out.md
index bb10cd9..c463614 100644
--- a/_posts/2016-10-03-resteasy-310cr1-is-out.md
+++ b/content/posts/2016-10-03-resteasy-310cr1-is-out.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.1.0.CR1 is out"
subtitle: ""
-date: Oct 3, 2016 8:53:00 AM
+date: 2016-10-03 08:53:00
author: Alessio Soldano
---
@@ -19,18 +19,3 @@ author: Alessio Soldano
Just a note to tell you that [the first CR](https://issues.redhat.com/secure/ReleaseNote.jspa?version=12331470&styleName=Text&projectId=12310560) version of RESTEasy 3.1 has been [tagged](https://github.com/resteasy/resteasy/tree/3.1.0.CR1) last Friday. The artifacts are available on the [Maven repository](https://repository.jboss.org/nexus/content/groups/public/org/jboss/resteasy/).
It's still a good time to have a look at and try the new 3.1, any feedback is welcome. We hope to go Final by the end of this month :-)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2016-10-05-resteasy-310cr2-is-out.md b/content/posts/2016-10-05-resteasy-310cr2-is-out.md
similarity index 84%
rename from _posts/2016-10-05-resteasy-310cr2-is-out.md
rename to content/posts/2016-10-05-resteasy-310cr2-is-out.md
index 7f58b1c..31e1889 100644
--- a/_posts/2016-10-05-resteasy-310cr2-is-out.md
+++ b/content/posts/2016-10-05-resteasy-310cr2-is-out.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.1.0.CR2 is out"
subtitle: ""
-date: Oct 5, 2016 9:46:00 AM
+date: 2016-10-05 09:46:00
author: Alessio Soldano
---
@@ -16,25 +16,10 @@ author: Alessio Soldano
-Just few days after CR1, here we are again with [another candidate release](https://github.com/resteasy/resteasy/tree/3.1.0.CR2) version of RESTEasy 3.1.0. A couple of regressions (actually compared to 3.1.0.Beta1) have been spotted and fixed and we've gone through a bunch of dependencies upgrades. Full release notes available [here](https://issues.redhat.com/secure/ReleaseNote.jspa?version=12331750&styleName=Text&projectId=12310560&Create=Create).
+Just few days after CR1, here we are again with [another candidate release](https://github.com/resteasy/resteasy/tree/3.1.0.CR2) version of RESTEasy 3.1.0. A couple of regressions (actually compared to 3.1.0.Beta1) have been spotted and fixed and we've gone through a bunch of dependencies upgrades. Full release notes available [here](https://issues.redhat.com/secure/ReleaseNote.jspa?version=12331750&styleName=Text&projectId=12310560&p;Create=Create).
The new artifacts are available on the Maven repository as usual; please keep on trying the latest bits and report any issue you find, thanks a lot! Final release is coming soon :-)
Cheers
Alessio
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2016-11-05-yet-another-resteasy-310-candidate-release.md b/content/posts/2016-11-05-yet-another-resteasy-310-candidate-release.md
similarity index 92%
rename from _posts/2016-11-05-yet-another-resteasy-310-candidate-release.md
rename to content/posts/2016-11-05-yet-another-resteasy-310-candidate-release.md
index 494fbf9..fc9eb76 100644
--- a/_posts/2016-11-05-yet-another-resteasy-310-candidate-release.md
+++ b/content/posts/2016-11-05-yet-another-resteasy-310-candidate-release.md
@@ -2,7 +2,7 @@
layout: post
title: "Yet another RESTEasy 3.1.0 candidate release..."
subtitle: ""
-date: Nov 5, 2016 9:56:00 AM
+date: 2016-11-05 09:56:00
author: Alessio Soldano
---
@@ -23,18 +23,3 @@ The actual release notes are [here](https://issues.redhat.com/secure/ReleaseNote
Cheers
Alessio
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2016-12-14-resteasy-310final-is-out.md b/content/posts/2016-12-14-resteasy-310final-is-out.md
similarity index 92%
rename from _posts/2016-12-14-resteasy-310final-is-out.md
rename to content/posts/2016-12-14-resteasy-310final-is-out.md
index 3b0a226..ff24a25 100644
--- a/_posts/2016-12-14-resteasy-310final-is-out.md
+++ b/content/posts/2016-12-14-resteasy-310final-is-out.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.1.0.Final is out"
subtitle: ""
-date: Dec 14, 2016 10:17:00 A
+date: 2016-12-14 10:17:00
author: Alessio Soldano
---
@@ -71,18 +71,3 @@ Cheers
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2017-02-27-resteasy-311final-is-out.md b/content/posts/2017-02-27-resteasy-311final-is-out.md
similarity index 89%
rename from _posts/2017-02-27-resteasy-311final-is-out.md
rename to content/posts/2017-02-27-resteasy-311final-is-out.md
index 60d3fd3..d6c1597 100644
--- a/_posts/2017-02-27-resteasy-311final-is-out.md
+++ b/content/posts/2017-02-27-resteasy-311final-is-out.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.1.1.Final is out"
subtitle: ""
-date: Feb 27, 2017 5:52:00 AM
+date: 2017-02-27 05:52:00
author: Alessio Soldano
---
@@ -21,18 +21,3 @@ Here we are a couple of months later with the first bug fix release of RESTEasy
Those monitoring the website and/or the development on GithHub might have noticed that during the past weeks we've also continued merging fixes into the 3.0 branch. The result of that effort is in the 3.0.20.Final and 3.0.21.Final releases which are also available for users that still need some time before switching to 3.1. We are likely going on actively working on 3.0 for some more time, but we really encourage you to migrate to 3.1 as soon as possible.
Enjoy the [new releases](https://resteasy.jboss.org/downloads) and please provide feedback!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2017-03-31-resteasy-312final-and-3022final-are-out.md b/content/posts/2017-03-31-resteasy-312final-and-3022final-are-out.md
similarity index 84%
rename from _posts/2017-03-31-resteasy-312final-and-3022final-are-out.md
rename to content/posts/2017-03-31-resteasy-312final-and-3022final-are-out.md
index de3bf51..faa9b6f 100644
--- a/_posts/2017-03-31-resteasy-312final-and-3022final-are-out.md
+++ b/content/posts/2017-03-31-resteasy-312final-and-3022final-are-out.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.1.2.Final and 3.0.22.Final are out"
subtitle: ""
-date: Mar 31, 2017 4:27:00 AM
+date: 2017-03-31 04:27:00
author: Alessio Soldano
---
@@ -21,18 +21,3 @@ Yesterday we pushed a new couple of releases (3.1.2.Final and 3.0.22.Final) out
The new versions are mainly bug fix ones. Something interesting is that we started testing against JDK 9. RESTEasy 3.1.2.Final contains some changes / fixes and workarounds to allow building the project with the current latest early access version of JDK 9. The testsuite is also mostly passing.
As usual, any feedback or issue... just let us know!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2017-07-26-summer-releases-and-now-on-jax-rs-21.md b/content/posts/2017-07-26-summer-releases-and-now-on-jax-rs-21.md
similarity index 84%
rename from _posts/2017-07-26-summer-releases-and-now-on-jax-rs-21.md
rename to content/posts/2017-07-26-summer-releases-and-now-on-jax-rs-21.md
index 04fa418..f1a43f5 100644
--- a/_posts/2017-07-26-summer-releases-and-now-on-jax-rs-21.md
+++ b/content/posts/2017-07-26-summer-releases-and-now-on-jax-rs-21.md
@@ -2,7 +2,7 @@
layout: post
title: "Summer releases and now on JAX-RS 2.1!"
subtitle: ""
-date: Jul 26, 2017 8:10:00 AM
+date: 2017-07-26 08:10:00
author: Alessio Soldano
---
@@ -21,18 +21,3 @@ author: Alessio Soldano
Now it's really time for the team to focus on implementing **JSR 370 (JAX-RS 2.1)**, which will be one of the features marking next minor (or major, maybe) of RESTEasy.
Stay tuned!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2017-08-09-how-to-use-resteasy-in-a-spring-boot-application.md b/content/posts/2017-08-09-how-to-use-resteasy-in-a-spring-boot-application.md
similarity index 98%
rename from _posts/2017-08-09-how-to-use-resteasy-in-a-spring-boot-application.md
rename to content/posts/2017-08-09-how-to-use-resteasy-in-a-spring-boot-application.md
index da171c3..9b53469 100644
--- a/_posts/2017-08-09-how-to-use-resteasy-in-a-spring-boot-application.md
+++ b/content/posts/2017-08-09-how-to-use-resteasy-in-a-spring-boot-application.md
@@ -2,7 +2,7 @@
layout: post
title: "How to use RESTEasy in a Spring Boot application"
subtitle: ""
-date: Aug 9, 2017 2:01:33 PM
+date: 2017-08-09 14:01:33
author: Fábio Carvalho
---
@@ -40,8 +40,3 @@ See this [RESTEasy Spring Boot sample application](https://github.com/paypal/res
4. [Spring Boot Reference Guide](https://docs.spring.io/spring-boot/docs/1.5.3.RELEASE/reference/htmlsingle/#using-boot-starter)
5. [Spring Initializr](https://start.spring.io/)
6. [Microservices in a Nutshell](https://www.thoughtworks.com/insights/blog/microservices-nutshell)
-
-
-
-
-
diff --git a/_posts/2017-11-13-resteasy-400beta1.md b/content/posts/2017-11-13-resteasy-400beta1.md
similarity index 92%
rename from _posts/2017-11-13-resteasy-400beta1.md
rename to content/posts/2017-11-13-resteasy-400beta1.md
index d5b9c06..ed8036f 100644
--- a/_posts/2017-11-13-resteasy-400beta1.md
+++ b/content/posts/2017-11-13-resteasy-400beta1.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 4.0.0.Beta1, JAX-RS 2.1 and more"
subtitle: ""
-date: Nov 13, 2017 5:50:00 AM
+date: 2017-11-13 05:50:00
author: Alessio Soldano
---
@@ -30,18 +30,3 @@ The full release notes are [available on jira](https://issues.redhat.com/secure/
Please consider trying the latest release and providing feedback!
Thanks
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-02-22-resteasy-350final-and-400beta2.md b/content/posts/2018-02-22-resteasy-350final-and-400beta2.md
similarity index 95%
rename from _posts/2018-02-22-resteasy-350final-and-400beta2.md
rename to content/posts/2018-02-22-resteasy-350final-and-400beta2.md
index bf3bee2..4e132d7 100644
--- a/_posts/2018-02-22-resteasy-350final-and-400beta2.md
+++ b/content/posts/2018-02-22-resteasy-350final-and-400beta2.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.5.0.Final and 4.0.0.Beta2"
subtitle: ""
-date: Feb 22, 2018 5:44:00 PM
+date: 2018-02-22 17:44:00
author: Alessio Soldano
---
@@ -40,18 +40,3 @@ RESTEasy 3.5.0.Final binaries and sources are available on [resteasy.jboss.org](
Please consider trying the latest release and providing feedback!
Enjoy :-)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-04-18-time-for-a-couple-of-bug-fix-releases.md b/content/posts/2018-04-18-time-for-a-couple-of-bug-fix-releases.md
similarity index 91%
rename from _posts/2018-04-18-time-for-a-couple-of-bug-fix-releases.md
rename to content/posts/2018-04-18-time-for-a-couple-of-bug-fix-releases.md
index 70b66ca..ecb5dec 100644
--- a/_posts/2018-04-18-time-for-a-couple-of-bug-fix-releases.md
+++ b/content/posts/2018-04-18-time-for-a-couple-of-bug-fix-releases.md
@@ -2,7 +2,7 @@
layout: post
title: "Time for a couple of bug fix releases"
subtitle: ""
-date: Apr 18, 2018 4:29:00 PM
+date: 2018-04-18 16:29:00
author: Alessio Soldano
---
@@ -25,18 +25,3 @@ On top of that, with **JDK 10** having been officially released, we had to ensur
The full release notes are available [here](https://issues.redhat.com/secure/ReleaseNote.jspa?version=12336861&styleName=Text&projectId=12310560&Create=Create). The Maven artifacts are available for both releases on the usual repository.
Next round of releases will most likely include few new and interesting features, stay tuned... ;-)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-05-23-resteasy-spring-boot-starter-has-moved.md b/content/posts/2018-05-23-resteasy-spring-boot-starter-has-moved.md
similarity index 92%
rename from _posts/2018-05-23-resteasy-spring-boot-starter-has-moved.md
rename to content/posts/2018-05-23-resteasy-spring-boot-starter-has-moved.md
index c0faf2e..785d22d 100644
--- a/_posts/2018-05-23-resteasy-spring-boot-starter-has-moved.md
+++ b/content/posts/2018-05-23-resteasy-spring-boot-starter-has-moved.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy Spring Boot starter has moved"
subtitle: ""
-date: May 23, 2018 9:10:00 AM
+date: 2018-05-23 09:10:00
author: Alessio Soldano
---
@@ -29,18 +29,3 @@ Compared to the latest release from PayPal repository, the first Red Hat release
In the next future, the plan is to move forward embracing Spring Boot 2 and integrating more recent versions of the core RESTEasy (3.5 / 3.6 streams).
_So please stay tuned, play with the latest release and feel free to contribute!_
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-05-29-new-blog.md b/content/posts/2018-05-29-new-blog.md
similarity index 99%
rename from _posts/2018-05-29-new-blog.md
rename to content/posts/2018-05-29-new-blog.md
index cf2131a..06a0c0c 100644
--- a/_posts/2018-05-29-new-blog.md
+++ b/content/posts/2018-05-29-new-blog.md
@@ -2,7 +2,7 @@
layout: post
title: "New DRY-er annotations for parameters"
subtitle: ""
-date: May 29, 2018 9:13:19 AM
+date: 2018-05-29 09:13:19
author: Stephane Epardaud
---
@@ -88,5 +88,3 @@ Build, Execution, Deployment > Compiler > Java Compiler > Additional command lin
Note that you will need to use the
4.0.0-SNAPSHOT or 3.6.0-SNAPSHOT
versions of RESTEasy to try this, because the [feature](https://issues.redhat.com/browse/RESTEASY-1880) hasn't been included in a release yet.
-
-
diff --git a/_posts/2018-06-04-asynchronous-reactive-rxjava-and-beyond.md b/content/posts/2018-06-04-asynchronous-reactive-rxjava-and-beyond.md
similarity index 99%
rename from _posts/2018-06-04-asynchronous-reactive-rxjava-and-beyond.md
rename to content/posts/2018-06-04-asynchronous-reactive-rxjava-and-beyond.md
index 3301d88..99c499c 100644
--- a/_posts/2018-06-04-asynchronous-reactive-rxjava-and-beyond.md
+++ b/content/posts/2018-06-04-asynchronous-reactive-rxjava-and-beyond.md
@@ -2,7 +2,7 @@
layout: post
title: "Asynchronous, reactive, rxjava and beyond!"
subtitle: ""
-date: Jun 4, 2018 9:02:51 AM
+date: 2018-06-04 09:02:51
author: Stephane Epardaud
---
## JAX-RS 1.0: The blocking origins
@@ -248,5 +248,3 @@ RxInvoker
implementations are only available in the latest
4.0.0-SNAPSHOT
snapshots (they're likely being added to 3.6 branch soon, though).
-
-
diff --git a/_posts/2018-06-11-a-brief-introduction-to-the-resteasy-tracing-feature.md b/content/posts/2018-06-11-a-brief-introduction-to-the-resteasy-tracing-feature.md
similarity index 98%
rename from _posts/2018-06-11-a-brief-introduction-to-the-resteasy-tracing-feature.md
rename to content/posts/2018-06-11-a-brief-introduction-to-the-resteasy-tracing-feature.md
index f4ca352..d53cbdb 100644
--- a/_posts/2018-06-11-a-brief-introduction-to-the-resteasy-tracing-feature.md
+++ b/content/posts/2018-06-11-a-brief-introduction-to-the-resteasy-tracing-feature.md
@@ -2,7 +2,7 @@
layout: post
title: "A brief introduction to the RESTEasy Tracing Feature"
subtitle: ""
-date: Jun 11, 2018 11:53:00 P
+date: 2018-06-11 23:53:00
author: Weinan Li
---
Tracing feature is a way for the users of the RESTEasy to understand what's going on internally in the container when a request is processed. It's different from the pure logging system or profiling feature, which provide more general information about the request/response info, etc.
@@ -130,18 +130,3 @@ If you’d like to have a look at the tracing feature in action, you can current
[https://github.com/resteasy/resteasy/blob/master/testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/tracing/BasicTracingTest.java](https://github.com/resteasy/resteasy/blob/master/testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/tracing/BasicTracingTest.java)
In above is the brief description of the RESTEasy document.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-06-18-new-asynchronous-container-filters.md b/content/posts/2018-06-18-new-asynchronous-container-filters.md
similarity index 98%
rename from _posts/2018-06-18-new-asynchronous-container-filters.md
rename to content/posts/2018-06-18-new-asynchronous-container-filters.md
index f10aeb5..ae5e9fc 100644
--- a/_posts/2018-06-18-new-asynchronous-container-filters.md
+++ b/content/posts/2018-06-18-new-asynchronous-container-filters.md
@@ -2,7 +2,7 @@
layout: post
title: "New: Asynchronous container filters"
subtitle: ""
-date: Jun 18, 2018 12:03:55 A
+date: 2018-06-18 00:03:55
author: Stephane Epardaud
---
@@ -218,18 +218,3 @@ If you have the need for [asynchronous request or response filters](https://docs
or
4.0.0.Beta2
a try.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-07-02-resteasy-360final-and-400beta4.md b/content/posts/2018-07-02-resteasy-360final-and-400beta4.md
similarity index 94%
rename from _posts/2018-07-02-resteasy-360final-and-400beta4.md
rename to content/posts/2018-07-02-resteasy-360final-and-400beta4.md
index c38463b..e883b47 100644
--- a/_posts/2018-07-02-resteasy-360final-and-400beta4.md
+++ b/content/posts/2018-07-02-resteasy-360final-and-400beta4.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.6.0.Final and 4.0.0.Beta4"
subtitle: ""
-date: Jul 2, 2018 8:56:00 AM
+date: 2018-07-02 08:56:00
author: Alessio Soldano
---
@@ -52,18 +52,3 @@ Enjoy!
[7] [A brief introduction to the RESTEasy Tracing Feature](https://developer.jboss.org/community/resteasy/blog/2018/06/11/a-brief-introduction-to-the-resteasy-tracing-feature)
[8] [New: Asynchronous container filters](https://developer.jboss.org/community/resteasy/blog/2018/06/18/new-asynchronous-container-filters)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-07-19-asynchronous-injection-in-resteasy.md b/content/posts/2018-07-19-asynchronous-injection-in-resteasy.md
similarity index 98%
rename from _posts/2018-07-19-asynchronous-injection-in-resteasy.md
rename to content/posts/2018-07-19-asynchronous-injection-in-resteasy.md
index 9865bb9..3b7d720 100644
--- a/_posts/2018-07-19-asynchronous-injection-in-resteasy.md
+++ b/content/posts/2018-07-19-asynchronous-injection-in-resteasy.md
@@ -2,7 +2,7 @@
layout: post
title: "Asynchronous injection in RESTEasy"
subtitle: ""
-date: Jul 19, 2018 5:05:10 AM
+date: 2018-07-19 05:05:10
author: Stephane Epardaud
---
@@ -223,18 +223,3 @@ resteasy-rxjava2
We've removed yet another common cause of boilerplate: rejoice!
Async injection was added in the latest [4.0.0.Beta4](https://developer.jboss.org/community/resteasy/blog/2018/07/02/resteasy-360final-and-400beta4) release ([RESTEASY-1905](https://issues.redhat.com/projects/RESTEASY/issues/RESTEASY-1905?filter=allopenissues)). Go ahead and try it out while it's fresh!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-07-31-resteasy-spring-boot-starter-200final.md b/content/posts/2018-07-31-resteasy-spring-boot-starter-200final.md
similarity index 87%
rename from _posts/2018-07-31-resteasy-spring-boot-starter-200final.md
rename to content/posts/2018-07-31-resteasy-spring-boot-starter-200final.md
index d85b1a3..31871ec 100644
--- a/_posts/2018-07-31-resteasy-spring-boot-starter-200final.md
+++ b/content/posts/2018-07-31-resteasy-spring-boot-starter-200final.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy Spring Boot starter 2.0.0.Final"
subtitle: ""
-date: Jul 31, 2018 10:18:00 A
+date: 2018-07-31 10:18:00
author: Alessio Soldano
---
A couple of months ago, we [announced](https://developer.jboss.org/community/resteasy/blog/2018/05/23/resteasy-spring-boot-starter-has-moved) the move of the **RESTEasy Spring Boot starter** to [RESTEasy organization on GitHub](https://github.com/resteasy/resteasy-spring-boot). We also mentioned that soon a new version of the starter would have been available... and here we are today, presenting [release 2.0.0.Final](https://github.com/resteasy/resteasy-spring-boot/tree/2.0.0.Final), which
@@ -15,18 +15,3 @@ Feel free to pull them and give them a try.
Enjoy!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-08-09-resteasy-release-week.md b/content/posts/2018-08-09-resteasy-release-week.md
similarity index 88%
rename from _posts/2018-08-09-resteasy-release-week.md
rename to content/posts/2018-08-09-resteasy-release-week.md
index b7102a6..6cd70bb 100644
--- a/_posts/2018-08-09-resteasy-release-week.md
+++ b/content/posts/2018-08-09-resteasy-release-week.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy release week"
subtitle: ""
-date: Aug 9, 2018 6:48:00 PM
+date: 2018-08-09 18:48:00
author: Alessio Soldano
---
@@ -25,18 +25,3 @@ It's been a busy week... but before leaving for the week-end I owe you an up
As usual, give them a try while they're hot, feedback is welcome!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-09-05-resteasy-tracing-feature-now-supports-json-formatted-information.md b/content/posts/2018-09-05-resteasy-tracing-feature-now-supports-json-formatted-information.md
similarity index 97%
rename from _posts/2018-09-05-resteasy-tracing-feature-now-supports-json-formatted-information.md
rename to content/posts/2018-09-05-resteasy-tracing-feature-now-supports-json-formatted-information.md
index bd20876..33cab0f 100644
--- a/_posts/2018-09-05-resteasy-tracing-feature-now-supports-json-formatted-information.md
+++ b/content/posts/2018-09-05-resteasy-tracing-feature-now-supports-json-formatted-information.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy Tracing Feature Now Supports JSON formatted information"
subtitle: ""
-date: Sep 5, 2018 5:01:00 AM
+date: 2018-09-05 05:01:00
author: Weinan Li
---
@@ -125,18 +125,3 @@ The `timestamp` is the event start time, and the other fields are quite straight
The JSON formatted data should be more suitable to be parsed by code.
This feature is currently just in `4.0.0-SNAPSHOT`, and haven’t been officially released yet.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2018-10-31-resteasy-wadl-grammar-support.md b/content/posts/2018-10-31-resteasy-wadl-grammar-support.md
similarity index 98%
rename from _posts/2018-10-31-resteasy-wadl-grammar-support.md
rename to content/posts/2018-10-31-resteasy-wadl-grammar-support.md
index 9f9e99e..a6e6e64 100644
--- a/_posts/2018-10-31-resteasy-wadl-grammar-support.md
+++ b/content/posts/2018-10-31-resteasy-wadl-grammar-support.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy WADL Grammar Support"
subtitle: ""
-date: Oct 31, 2018 4:42:00 AM
+date: 2018-10-31 04:42:00
author: Weinan Li
---
@@ -12,7 +12,7 @@ RESTEasy has added WADL grammar support by this PR:
The major change is that `ResteasyWadlGrammar` is added into `ResteasyWadlWriter`:
-
+
In addition, the `ResteasyWadlWriter` is rewritten now, and all the static methods are now instance methods. It means users need to create an instance of `ResteasyWadlWriter` and put it into per-deployment scope.
@@ -280,7 +280,3 @@ Transfer-encoding: chunked
Above is the description about the RESTEasy WADL Grammar feature.
The other change is that `ResteasyWadlServlet` and `ResteasyWadlServletWriter` is now deprecated, because it doesn’t support the grammar feature, and these two classes will be removed from master branch in the future. Using `ResteasyWadlDefaultResource` is recommended to enable the WADL feature.
-
-
-
-
diff --git a/_posts/2019-02-12-jettison-has-been-removed-on-master-branch.md b/content/posts/2019-02-12-jettison-has-been-removed-on-master-branch.md
similarity index 90%
rename from _posts/2019-02-12-jettison-has-been-removed-on-master-branch.md
rename to content/posts/2019-02-12-jettison-has-been-removed-on-master-branch.md
index 43ca778..807e7b8 100644
--- a/_posts/2019-02-12-jettison-has-been-removed-on-master-branch.md
+++ b/content/posts/2019-02-12-jettison-has-been-removed-on-master-branch.md
@@ -2,7 +2,7 @@
layout: post
title: "Jettison has been removed on master branch"
subtitle: ""
-date: Feb 12, 2019 9:01:00 AM
+date: 2019-02-12 09:01:00
author: Weinan Li
---
@@ -19,18 +19,3 @@ In addition, Jackson2 has some subtle differences on supporting JAXB annotations
The above change shows the changes in JAXB annotations after changing the JAXB -> JSON provider to `resteasy-jackson2-provider` for `resteasy-link` module.
Above is the summary of Jettison removal.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-03-13-the-undertowjaxrsspringserver.md b/content/posts/2019-03-13-the-undertowjaxrsspringserver.md
similarity index 96%
rename from _posts/2019-03-13-the-undertowjaxrsspringserver.md
rename to content/posts/2019-03-13-the-undertowjaxrsspringserver.md
index 35dee06..d264f75 100644
--- a/_posts/2019-03-13-the-undertowjaxrsspringserver.md
+++ b/content/posts/2019-03-13-the-undertowjaxrsspringserver.md
@@ -2,7 +2,7 @@
layout: post
title: "The UndertowJaxrsSpringServer"
subtitle: ""
-date: Mar 13, 2019 12:48:00 A
+date: 2019-03-13 12:48:00
author: Weinan Li
---
@@ -62,18 +62,3 @@ The above code is part of the tests in `resteasy-undertow-spring`, and the tests
And the tests shows more advanced spring configurations that can be used as reference.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-03-28-resteasy-4-is-coming-soon.md b/content/posts/2019-03-28-resteasy-4-is-coming-soon.md
similarity index 97%
rename from _posts/2019-03-28-resteasy-4-is-coming-soon.md
rename to content/posts/2019-03-28-resteasy-4-is-coming-soon.md
index 2d4da83..860f7cc 100644
--- a/_posts/2019-03-28-resteasy-4-is-coming-soon.md
+++ b/content/posts/2019-03-28-resteasy-4-is-coming-soon.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 4 is coming soon"
subtitle: ""
-date: Mar 28, 2019 4:25:34 AM
+date: 2019-03-28 04:25:34
author: Alessio Soldano
---
@@ -62,18 +62,3 @@ So, it's definitely time to give RESTEasy 4 CR1 a try! There're multiple
Hopefully, unless something critical is spotted or reported, we'll be releasing Final (including proper documentation) in few weeks from now.
Stay tuned!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-05-07-resteasy-400final-is-here.md b/content/posts/2019-05-07-resteasy-400final-is-here.md
similarity index 92%
rename from _posts/2019-05-07-resteasy-400final-is-here.md
rename to content/posts/2019-05-07-resteasy-400final-is-here.md
index 9879602..8587566 100644
--- a/_posts/2019-05-07-resteasy-400final-is-here.md
+++ b/content/posts/2019-05-07-resteasy-400final-is-here.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 4.0.0.Final is here!"
subtitle: ""
-date: May 7, 2019 5:07:06 PM
+date: 2019-05-07 17:07:06
author: Alessio Soldano
---
@@ -23,18 +23,3 @@ At the end of March I was [announcing RESTEasy 4 CR1](https://developer.jboss.or
Going beyond new features, I believe this release sets the ground for future exciting developments in RESTEasy; the project got rid of old / deprecated pieces and is in a better position for accomodating the implementation of new and modern features, especially for Quarkus cloud-related scenarios.
_Stay tuned and try RESTEasy 4... feedback is welcome!_
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-06-03-resteasy-spring-boot-starter-310final-released.md b/content/posts/2019-06-03-resteasy-spring-boot-starter-310final-released.md
similarity index 84%
rename from _posts/2019-06-03-resteasy-spring-boot-starter-310final-released.md
rename to content/posts/2019-06-03-resteasy-spring-boot-starter-310final-released.md
index 2f9d063..df51dd4 100644
--- a/_posts/2019-06-03-resteasy-spring-boot-starter-310final-released.md
+++ b/content/posts/2019-06-03-resteasy-spring-boot-starter-310final-released.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy Spring Boot Starter 3.1.0.Final released"
subtitle: ""
-date: Jun 3, 2019 3:12:00 AM
+date: 2019-06-03 03:12:00
author: Weinan Li
---
@@ -22,18 +22,3 @@ Here is the maven dependency section to include the new release in your project:
```
The change in this release is that it adopts _RESTEasy 3.7.0.Final_ as dependency.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-06-19-resteasy-380final-and-microprofile-3.md b/content/posts/2019-06-19-resteasy-380final-and-microprofile-3.md
similarity index 91%
rename from _posts/2019-06-19-resteasy-380final-and-microprofile-3.md
rename to content/posts/2019-06-19-resteasy-380final-and-microprofile-3.md
index 37deeb9..cb624f1 100644
--- a/_posts/2019-06-19-resteasy-380final-and-microprofile-3.md
+++ b/content/posts/2019-06-19-resteasy-380final-and-microprofile-3.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.8.0.Final and MicroProfile 3"
subtitle: ""
-date: Jun 19, 2019 11:13:00 A
+date: 2019-06-19 11:13:00
author: Alessio Soldano
---
@@ -16,18 +16,3 @@ So today I'm happy to announce the availability of **RESTEasy 3.8.0**.Final,
A new release from the 4.x stream is also coming very soon and will of course include the same MP REST Client 1.3 implementation too.
_Stay tuned and try RESTEasy 3.8... feedback is welcome!_
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-06-27-resteasy-410final-is-available.md b/content/posts/2019-06-27-resteasy-410final-is-available.md
similarity index 90%
rename from _posts/2019-06-27-resteasy-410final-is-available.md
rename to content/posts/2019-06-27-resteasy-410final-is-available.md
index 79ef05e..d3f78b1 100644
--- a/_posts/2019-06-27-resteasy-410final-is-available.md
+++ b/content/posts/2019-06-27-resteasy-410final-is-available.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 4.1.0.Final is available!"
subtitle: ""
-date: Jun 27, 2019 5:16:00 PM
+date: 2019-06-27 17:16:00
author: Alessio Soldano
---
@@ -18,18 +18,3 @@ While 3.8.0.Final is soon landing in [WildFly](https://wildfly.org/) and [Thornt
_Stay tuned and give the new versions a try!_
_Thanks!_
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-07-16-resteasy-spring-boot-starter-400final-released.md b/content/posts/2019-07-16-resteasy-spring-boot-starter-400final-released.md
similarity index 88%
rename from _posts/2019-07-16-resteasy-spring-boot-starter-400final-released.md
rename to content/posts/2019-07-16-resteasy-spring-boot-starter-400final-released.md
index fb40022..01c94a7 100644
--- a/_posts/2019-07-16-resteasy-spring-boot-starter-400final-released.md
+++ b/content/posts/2019-07-16-resteasy-spring-boot-starter-400final-released.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy Spring Boot Starter 4.0.0.Final released"
subtitle: ""
-date: Jul 16, 2019 9:38:00 AM
+date: 2019-07-16 09:38:00
author: Weinan Li
---
@@ -28,19 +28,3 @@ From this release, the master branch is upgraded to use RESTEasy 4.x as dependen
The future 3.x releases development will be continued in branch `3.x`:
* [GitHub - resteasy/resteasy-spring-boot at 3.x](https://github.com/resteasy/resteasy-spring-boot/tree/3.x)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-08-05-resteasy-420final-performance-enhancements-and-new-features.md b/content/posts/2019-08-05-resteasy-420final-performance-enhancements-and-new-features.md
similarity index 93%
rename from _posts/2019-08-05-resteasy-420final-performance-enhancements-and-new-features.md
rename to content/posts/2019-08-05-resteasy-420final-performance-enhancements-and-new-features.md
index 394e85f..e6e5300 100644
--- a/_posts/2019-08-05-resteasy-420final-performance-enhancements-and-new-features.md
+++ b/content/posts/2019-08-05-resteasy-420final-performance-enhancements-and-new-features.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 4.2.0.Final: performance enhancements and new features"
subtitle: ""
-date: Aug 5, 2019 4:01:00 AM
+date: 2019-08-05 04:01:00
author: Alessio Soldano
---
@@ -17,18 +17,3 @@ thanks!!
The latest artifacts are available on the JBoss Nexus repository as well as Maven Central repository. [Quarkus](https://quarkus.io/) is being upgraded as well to benefit from the latest additions mentioned above!
Enjoy!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-09-04-resteasy-spring-boot-starter-410final-and-320final-released.md b/content/posts/2019-09-04-resteasy-spring-boot-starter-410final-and-320final-released.md
similarity index 79%
rename from _posts/2019-09-04-resteasy-spring-boot-starter-410final-and-320final-released.md
rename to content/posts/2019-09-04-resteasy-spring-boot-starter-410final-and-320final-released.md
index f01ce1e..ea0d907 100644
--- a/_posts/2019-09-04-resteasy-spring-boot-starter-410final-and-320final-released.md
+++ b/content/posts/2019-09-04-resteasy-spring-boot-starter-410final-and-320final-released.md
@@ -2,24 +2,9 @@
layout: post
title: "RESTEasy Spring Boot Starter 4.1.0.Final and 3.2.0.Final released"
subtitle: ""
-date: Sep 4, 2019 2:04:00 AM
+date: 2019-09-04 02:04:00
author: Weinan Li
---
The RESTEasy Spring Boot Starter `4.1.0.Final` and `3.2.0.Final` are released, and the major change is that these two releases adopt the newest RESTEasy releases as dependencies (RESTEasy `4.3.0.Final` and `3.9.0.Final` respectively for each branches).
The latest artifacts are available on the JBoss Nexus repository as well as Maven Central repository.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-09-23-resteasy-430final-and-390final-released.md b/content/posts/2019-09-23-resteasy-430final-and-390final-released.md
similarity index 80%
rename from _posts/2019-09-23-resteasy-430final-and-390final-released.md
rename to content/posts/2019-09-23-resteasy-430final-and-390final-released.md
index f8fc639..8d8be06 100644
--- a/_posts/2019-09-23-resteasy-430final-and-390final-released.md
+++ b/content/posts/2019-09-23-resteasy-430final-and-390final-released.md
@@ -2,33 +2,8 @@
layout: post
title: "RESTEasy 4.3.0.Final and 3.9.0.Final released"
subtitle: ""
-date: Sep 23, 2019 7:10:00 PM
+date: 2019-09-23 19:10:00
author: Ronald Sigal
---
-
-
-
-
-
-
-
-
-
-
Two new RESTEasy releases appeared recently, 4.3.0.Final and 3.9.0.Final. Both of them introduce a new feature which allows resource method parameters to be java.util.Optional<T> types, allowing a cleaner coding style. Like the previous 4.2.0.Final release, 4.3.0.Final includes performance improvement contributions from the community, and, of course, they both have bug fixes (upgrade early and often!) and component upgrades. 3.9.0.Final is the latest in the succession of releases targeted towards Wildfly, and it will ship with the upcoming Wildfly 18. 4.3.0.Final is targeted towards the next Quarkus release.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-10-08-looking-to-the-future.md b/content/posts/2019-10-08-looking-to-the-future.md
similarity index 96%
rename from _posts/2019-10-08-looking-to-the-future.md
rename to content/posts/2019-10-08-looking-to-the-future.md
index 43e7a17..10aa217 100644
--- a/_posts/2019-10-08-looking-to-the-future.md
+++ b/content/posts/2019-10-08-looking-to-the-future.md
@@ -2,7 +2,7 @@
layout: post
title: "Looking to the future..."
subtitle: ""
-date: Oct 8, 2019 7:43:00 PM
+date: 2019-10-08 19:43:00
author: Alessio Soldano
---
If you look at the [download page](https://resteasy.github.io/downloads.html), you might notice that so far 2019 has been a year rich of RESTEasy releases. We've made
@@ -36,19 +36,3 @@ In addition to the JakartaEE and MicroProfile efforts mentioned above, we still
That's it for now, I promise I will try to update you on the plans in the future!
_Stay tuned ... and keep on contributing!_
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-10-08-resteasy-spring-boot-starter-411final-released.md b/content/posts/2019-10-08-resteasy-spring-boot-starter-411final-released.md
similarity index 69%
rename from _posts/2019-10-08-resteasy-spring-boot-starter-411final-released.md
rename to content/posts/2019-10-08-resteasy-spring-boot-starter-411final-released.md
index 344cb2c..7857cc2 100644
--- a/_posts/2019-10-08-resteasy-spring-boot-starter-411final-released.md
+++ b/content/posts/2019-10-08-resteasy-spring-boot-starter-411final-released.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy Spring Boot Starter 4.1.1.Final released"
subtitle: ""
-date: Oct 8, 2019 5:10:00 AM
+date: 2019-10-08 05:10:00
author: Weinan Li
---
@@ -10,18 +10,3 @@ In release, these dependencies are upgraded:
* Spring Boot dependency is upgraded to 2.1.9.RELEASE
* RESTEasy dependency is upgraded to version 4.3.1.Final
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-10-30-resteasy-440final-moving-to-jakarta-artifacts-and-much-more.md b/content/posts/2019-10-30-resteasy-440final-moving-to-jakarta-artifacts-and-much-more.md
similarity index 92%
rename from _posts/2019-10-30-resteasy-440final-moving-to-jakarta-artifacts-and-much-more.md
rename to content/posts/2019-10-30-resteasy-440final-moving-to-jakarta-artifacts-and-much-more.md
index 0c36a9f..7d02389 100644
--- a/_posts/2019-10-30-resteasy-440final-moving-to-jakarta-artifacts-and-much-more.md
+++ b/content/posts/2019-10-30-resteasy-440final-moving-to-jakarta-artifacts-and-much-more.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 4.4.0.Final: moving to Jakarta artifacts and much more"
subtitle: ""
-date: Oct 30, 2019 8:07:00 AM
+date: 2019-10-30 08:07:00
author: Alessio Soldano
---
Just before Halloween, here is another nice release of **RESTEasy**!
@@ -23,18 +23,3 @@ Finally, [Quarkus 0.27 has just been released](https://quarkus.io/blog/quarkus-0
Feedback is welcome as usual!
Enjoy!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2019-10-30-resteasy-3100final-jakarta.md b/content/posts/2020-01-15-resteasy-3100final-jakarta.md
similarity index 95%
rename from _posts/2019-10-30-resteasy-3100final-jakarta.md
rename to content/posts/2020-01-15-resteasy-3100final-jakarta.md
index 88b078c..20bd64d 100644
--- a/_posts/2019-10-30-resteasy-3100final-jakarta.md
+++ b/content/posts/2020-01-15-resteasy-3100final-jakarta.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.10.0.Final: Jakarta artifacts, new configuration parameter"
subtitle: ""
-date: Jan 15, 2020 19:04:00
+date: 2020-01-15 19:04:00
author: Ron Sigal
---
Here comes the first **RESTEasy** release of 2020!
@@ -75,19 +75,3 @@ These values can be accessed from the Command Line Interface as well:
}
Stay tuned for Wildfly 19!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2020-02-11-resteasy-jackson-polymorphic-type-validator.md b/content/posts/2020-02-11-resteasy-jackson-polymorphic-type-validator.md
similarity index 97%
rename from _posts/2020-02-11-resteasy-jackson-polymorphic-type-validator.md
rename to content/posts/2020-02-11-resteasy-jackson-polymorphic-type-validator.md
index 8ebaf95..f74313c 100644
--- a/_posts/2020-02-11-resteasy-jackson-polymorphic-type-validator.md
+++ b/content/posts/2020-02-11-resteasy-jackson-polymorphic-type-validator.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy default white-list based PolymorphicTypeValidator extension"
subtitle: ""
-date: Feb 11, 2020 01:00:00
+date: 2020-02-11 01:00:00
author: Alessio Soldano
---
I've been planning to write about the topic here since quite some time, apologize for the delay...
@@ -13,4 +13,3 @@ The changes have to do with CVEs and aim at **making applications relying on RES
Now, to be on the safe side, in RESTEasy we decided to **always enable Safe Default Typing**, by installing a **custom PolymorphicTypeValidator** instance that relies on system properties for creating a **white-list** of classes that are allowed to be deserialized. Most of the applications won't simply be affected by this; however, if your scenario is one of those allowing for the vulnerability to be exploited, you'll most likely have to provide a suitable white-list of classes to ensure our application keep on working properly.
You can read more (including the actual system properties' names) in the [RESTEasy documentation](https://docs.jboss.org/resteasy/docs/4.4.2.Final/userguide/html/json.html#Polymorphic_Typing_deserialization). On RESTEasy 4 series, the properties can also be specified at deployment level using MicroProfile Config.
-
diff --git a/_posts/2020-02-20-resteasy-3110final-mp-rest-client.md b/content/posts/2020-02-20-resteasy-3110final-mp-rest-client.md
similarity index 94%
rename from _posts/2020-02-20-resteasy-3110final-mp-rest-client.md
rename to content/posts/2020-02-20-resteasy-3110final-mp-rest-client.md
index 2e4a92c..0523f87 100644
--- a/_posts/2020-02-20-resteasy-3110final-mp-rest-client.md
+++ b/content/posts/2020-02-20-resteasy-3110final-mp-rest-client.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy 3.11.0.Final: MicroProfile REST Client 1.4; Client memory management"
subtitle: ""
-date: Feb 20, 2020 00:45:00
+date: 2020-02-20 00:45:00
author: Ron Sigal
---
Originally, RESTEasy 3.10.0.Final was intended to ship with Wildfly 19, but WF 19, along with a number of upstream projects
@@ -15,4 +15,4 @@ RESTEasy does that and passes the updated TCK.
Release 3.11.0.Final also includes some memory management improvements in the client environment, as described in
["Reduce memory pressure while inheriting client configuration"](https://issues.redhat.com/browse/RESTEASY-2302),
-For release notes, see [RESTEasy 3.11.0.Final](https://issues.redhat.com/secure/ReleaseNote.jspa?version=12343301&styleName=Html&projectId=12310560&Create=Create&atl_token=AQZJ-FV3A-N91S-UDEU_b298dd8ed3dced33c98f12b1739760bc1706034e_lin)
\ No newline at end of file
+For release notes, see [RESTEasy 3.11.0.Final](https://issues.redhat.com/secure/ReleaseNote.jspa?version=12343301&styleName=Html&projectId=12310560&Create=Create&atl_token=AQZJ-FV3A-N91S-UDEU_b298dd8ed3dced33c98f12b1739760bc1706034e_lin)
diff --git a/_posts/2020-04-10-spring.md b/content/posts/2020-04-10-spring.md
similarity index 99%
rename from _posts/2020-04-10-spring.md
rename to content/posts/2020-04-10-spring.md
index 6346409..13a7e56 100644
--- a/_posts/2020-04-10-spring.md
+++ b/content/posts/2020-04-10-spring.md
@@ -2,7 +2,7 @@
layout: post
title: "Deploy RESTEasy-Spring project into WildFly Servlet-Only Container"
subtitle: ""
-date: Apr 10, 2020
+date: 2020-04-10
author: Wei Nan Li
---
diff --git a/_posts/2020-04-27-wildfly-deploy.md b/content/posts/2020-04-27-wildfly-deploy.md
similarity index 99%
rename from _posts/2020-04-27-wildfly-deploy.md
rename to content/posts/2020-04-27-wildfly-deploy.md
index 5a876f6..3564b53 100644
--- a/_posts/2020-04-27-wildfly-deploy.md
+++ b/content/posts/2020-04-27-wildfly-deploy.md
@@ -2,7 +2,7 @@
layout: post
title: "Deploy resteasy-spring-boot project into WildFly Java EE Full & Web Distribution"
subtitle: ""
-date: Apr 27, 2020
+date: 2020-04-27
author: Wei Nan Li
---
@@ -122,6 +122,3 @@ Hello, world!
```
From the above output, we can see the service is working.
-
-
-
diff --git a/_posts/2020-05-18-MicroProfile-config.md b/content/posts/2020-05-18-MicroProfile-config.md
similarity index 96%
rename from _posts/2020-05-18-MicroProfile-config.md
rename to content/posts/2020-05-18-MicroProfile-config.md
index f595dc5..0009234 100644
--- a/_posts/2020-05-18-MicroProfile-config.md
+++ b/content/posts/2020-05-18-MicroProfile-config.md
@@ -2,8 +2,8 @@
layout: post
title: "RESTEasy 3.12.0.Final: MicroProfile Config"
subtitle: ""
-date: May 18, 2020 18:17:00
-author: Ron Sigal
+date: 2020-05-18 18:17:00
+aliases: [2020/05/18/MicroProfile-config/]
---
RESTEasy 3.12.0.Final, just released, will ship with the upcoming WildFly 20. Besides a number of bug fixes, it has one
new feature, the incorporation of [MicroProfile Config](https://github.com/eclipse/microprofile-config).
diff --git a/_posts/2020-05-22-swagger.md b/content/posts/2020-05-22-swagger.md
similarity index 99%
rename from _posts/2020-05-22-swagger.md
rename to content/posts/2020-05-22-swagger.md
index d5c0954..265ab6c 100644
--- a/_posts/2020-05-22-swagger.md
+++ b/content/posts/2020-05-22-swagger.md
@@ -2,7 +2,7 @@
layout: post
title: "Sample Project For Swagger And JAX-RS Integration"
subtitle: ""
-date: May 22, 2020
+date: 2020-05-22
author: Wei Nan Li
---
@@ -117,5 +117,3 @@ dummy
```
From above command and its output, we can see our service is invoked.
-
-
diff --git a/_posts/2020-05-30-monitor-your-application-with-microprofile-metrics.md b/content/posts/2020-05-30-monitor-your-application-with-microprofile-metrics.md
similarity index 99%
rename from _posts/2020-05-30-monitor-your-application-with-microprofile-metrics.md
rename to content/posts/2020-05-30-monitor-your-application-with-microprofile-metrics.md
index aca712c..122175e 100644
--- a/_posts/2020-05-30-monitor-your-application-with-microprofile-metrics.md
+++ b/content/posts/2020-05-30-monitor-your-application-with-microprofile-metrics.md
@@ -2,7 +2,7 @@
layout: post
title: "Monitor your application with MicroProfile Metrics"
subtitle: ""
-date: May 30, 2020
+date: 2020-05-30
author: Jim Ma
---

@@ -128,9 +128,3 @@ MicroProfile Metrics provides convenient annotation to easily expose metrics dat
- https://microprofile.io/project/eclipse/microprofile-metrics/spec/src/main/asciidoc/app-programming-model.adoc
- https://microprofile.io/project/eclipse/microprofile-metrics/spec/src/main/asciidoc/architecture.adoc
- http://www.projectatomic.io/blog/2015/06/using-volumes-with-docker-can-cause-problems-with-selinux/
-
-
-
-
-
-
diff --git a/_posts/2020-06-01-blog-microprofile-rest-client.md b/content/posts/2020-06-01-blog-microprofile-rest-client.md
similarity index 99%
rename from _posts/2020-06-01-blog-microprofile-rest-client.md
rename to content/posts/2020-06-01-blog-microprofile-rest-client.md
index ee3845d..b0e8964 100644
--- a/_posts/2020-06-01-blog-microprofile-rest-client.md
+++ b/content/posts/2020-06-01-blog-microprofile-rest-client.md
@@ -2,8 +2,9 @@
layout: post
title: "MicroProfile REST Client 1.4; Examination of a MicroProfile REST Client Application"
subtitle: ""
-date: Jun 1, 2020
+date: 2020-06-01
author: Rebecca Searls
+aliases: [/2020/06/14/blog-microprofile-config-outOfBox/]
---
In this article I will create a simple MicroProfile Rest Client that calls a
remote service. In the process I will discuss the nuances in creating the
diff --git a/_posts/2020-06-19-create-jaxrs-server-with-galleon.md b/content/posts/2020-06-19-create-jaxrs-server-with-galleon.md
similarity index 99%
rename from _posts/2020-06-19-create-jaxrs-server-with-galleon.md
rename to content/posts/2020-06-19-create-jaxrs-server-with-galleon.md
index e50d516..9557866 100644
--- a/_posts/2020-06-19-create-jaxrs-server-with-galleon.md
+++ b/content/posts/2020-06-19-create-jaxrs-server-with-galleon.md
@@ -2,7 +2,7 @@
layout: post
title: "Trim WildFly To Run Restful Service With WildFly Galleon "
subtitle: ""
-date: June 19, 2020
+date: 2020-06-19
author: Jim Ma
---
When we deploy Restful web service to WildFly Server, you might find that WildFly includes several components/subsystem your application doesn't actually use. Even these subsystems are lazily loaded, it's still consumes some disk spaces. Especially when moving to the cloud native architecture, we need the application server small size and start fast. WildFly Galleon project is created to install, uninstall or patch product with a xml customization definition or command line flags. With this tool, we tell Gallon we only need JAX-RS functionality in my server and it will automatically install a trimmed WildFly version with only JAX-RS subsystem and all its dependencies. In this blog, we'll go through these steps to create a slimmed WildFly Server which only include RESTEasy/jaxrs subystem to run Restful web service.
@@ -141,16 +141,3 @@ When your application needs other layers or subsystems after the first installat
WildFly provides rich layers for different application and purpose.The full list of layers can be found [here](https://docs.wildfly.org/20/Admin_Guide.html#wildfly-galleon-layers)
As you can see, Wildfly Galleon is a easy to use tool. Download and unzip are the two steps to get it ready. If you haven't, please give galleon a try to trim your RESTEasy/jaxrs installation. If you have any issues and questions about jaxrs galleon layer, please contact RESTEasy team.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2020-07-14-blog-microprofile-config-outOfBox.md b/content/posts/2020-07-14-blog-microprofile-config-outOfBox.md
similarity index 99%
rename from _posts/2020-07-14-blog-microprofile-config-outOfBox.md
rename to content/posts/2020-07-14-blog-microprofile-config-outOfBox.md
index e5b21e9..71001a3 100644
--- a/_posts/2020-07-14-blog-microprofile-config-outOfBox.md
+++ b/content/posts/2020-07-14-blog-microprofile-config-outOfBox.md
@@ -3,7 +3,7 @@ layout: post
title: "MicroProfile Config 1.3; Examination of The Out-Of-The-Box
ConfigSources for a RESTEasy Application"
subtitle: ""
-date: Jun 14, 2020
+date: 2020-06-14
author: Rebecca Searls
---
diff --git a/_posts/2020-07-30-resteasy-456-3130.md b/content/posts/2020-07-30-resteasy-456-3130.md
similarity index 89%
rename from _posts/2020-07-30-resteasy-456-3130.md
rename to content/posts/2020-07-30-resteasy-456-3130.md
index e1e89ea..457e2c0 100644
--- a/_posts/2020-07-30-resteasy-456-3130.md
+++ b/content/posts/2020-07-30-resteasy-456-3130.md
@@ -2,7 +2,7 @@
layout: post
title: "A couple of summer releases: RESTEasy 4.5.6.Final and 3.13.0.Final"
subtitle: ""
-date: Jul 30, 2020 11:01:00 AM
+date: 2020-07-30 11:01:00
author: Alessio Soldano
---
Users frequently scanning github for contributions and releases of **RESTEasy** might have noticed that during the past weeks we've tagged **4.5.6.Final** and **3.13.0.Final**.
@@ -13,19 +13,3 @@ The main motivation for the new 4.5 micro version is fixing a nasty security iss
RESTEasy 3.13.0.Final, instead, is a basically a bug fix release with the addition of a [feature](https://issues.redhat.com/browse/RESTEASY-2366) related to client side integration with [Elytron](https://wildfly-security.github.io/wildfly-elytron/); this is a required step to have REST clients eventually rely on WildFly security (SSL, authentication, etc) configuration when running in-container.
Enjoy the summer, stay safe and see you soon here for next RESTEasy improvements!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2020-09-24-resteasy-4.5.8-3.13.1.md b/content/posts/2020-09-24-resteasy-4.5.8-3.13.1.md
similarity index 76%
rename from _posts/2020-09-24-resteasy-4.5.8-3.13.1.md
rename to content/posts/2020-09-24-resteasy-4.5.8-3.13.1.md
index 23d9598..8cfdc83 100644
--- a/_posts/2020-09-24-resteasy-4.5.8-3.13.1.md
+++ b/content/posts/2020-09-24-resteasy-4.5.8-3.13.1.md
@@ -2,8 +2,8 @@
layout: post
title: "RESTEasy 4.5.8.Final and 3.13.1.Final released"
subtitle: ""
-date: Sept 24, 2020 15:44:00
-author: Ron Sigal
+date: 2020-09-24 15:44:00
+aliases: [/2020/09/24/resteasy-4.5.8-3.13.1/]
---
Two new releases, **4.5.8.Final** and **3.13.1.Final** are now available.
@@ -14,19 +14,3 @@ Note that we have skipped over 4.5.7.Final due to a glitch in the release proces
3.13.1.Final just has bug fixes and one upgrade.
Stay safe!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2020-10-09-run-restful-service-with-bootablejar.md b/content/posts/2020-10-09-run-restful-service-with-bootablejar.md
similarity index 99%
rename from _posts/2020-10-09-run-restful-service-with-bootablejar.md
rename to content/posts/2020-10-09-run-restful-service-with-bootablejar.md
index 17e8991..58bda32 100644
--- a/_posts/2020-10-09-run-restful-service-with-bootablejar.md
+++ b/content/posts/2020-10-09-run-restful-service-with-bootablejar.md
@@ -2,7 +2,7 @@
layout: post
title: "Restful service with bootable jar"
subtitle: ""
-date: Oct 21, 2020
+date: 2020-10-21
author: Jim Ma
---
@@ -193,20 +193,3 @@ wildfly-jar-plugin is the another good tool WildFly team created after galleon l
* [wildfly-jar-plugin project](https://github.com/wildfly-extras/wildfly-jar-maven-plugin)
* [wildfly-jar-plugin documentation](https://github.com/wildfly-extras/wildfly-jar-maven-plugin/releases/download/2.0.0.Alpha4/index.html)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2020-11-23-blog-Untangling-Reactive-Streams.md b/content/posts/2020-11-23-blog-Untangling-Reactive-Streams.md
similarity index 99%
rename from _posts/2020-11-23-blog-Untangling-Reactive-Streams.md
rename to content/posts/2020-11-23-blog-Untangling-Reactive-Streams.md
index 3385f75..9e77f91 100644
--- a/_posts/2020-11-23-blog-Untangling-Reactive-Streams.md
+++ b/content/posts/2020-11-23-blog-Untangling-Reactive-Streams.md
@@ -2,8 +2,9 @@
layout: post
title: "Untangling Reactive Streams' Gordian Knot, Wiring Subscriber, Publisher and Subscription"
subtitle: ""
-date: Nov 23, 2020
+date: 2020-11-23
author: Rebecca Searls
+aliases: [/2020/11/23/blog-Untangling-Reactive-Streams/]
---
At first look the Reactive Streams 1.0 Specification and its four short interfaces
@@ -686,12 +687,3 @@ I suggest using the github project for this article to walk through that code us
* [RxJava Plugins](http://reactivex.io/documentation/plugins.html)
* [RxJava 2.0](https://github.com/ReactiveX/RxJava/wiki/What%27s-different-in-2.0)
* [Flowable](https://www.programmersought.com/article/3415851924/)
-
-
-
-
-
-
-
-
-
diff --git a/_posts/2020-12-07-resteasy-reactive.md b/content/posts/2020-12-07-resteasy-reactive.md
similarity index 98%
rename from _posts/2020-12-07-resteasy-reactive.md
rename to content/posts/2020-12-07-resteasy-reactive.md
index 9637f19..6a10c49 100644
--- a/_posts/2020-12-07-resteasy-reactive.md
+++ b/content/posts/2020-12-07-resteasy-reactive.md
@@ -2,7 +2,7 @@
layout: post
title: "Introducing RESTEasy Reactive"
subtitle: ""
-date: Dec 07, 2020 02:30:00 PM
+date: 2020-12-07 14:30:00
author: Alessio Soldano
---
The RESTEasy community has been very active during the last two years and the project has seen a lot of improvements and additions. In addition to the usual standalone and [WildFly](https://www.wildfly.org/) related usage scenarios, we've seen a lot of interest coming from the [Quarkus](https://quarkus.io/) community, due to RESTEasy providing the base REST engine in it. The result has been RESTEasy 4 series starting embracing reactive, with innovation going beyond the few additions mandated by the JAX-RS 2.1 specification. Quarkus has benefited from this and succeeded in continuing offering JAX-RS ([Jakarta RESTful Web Services](https://projects.eclipse.org/projects/ee4j.jaxrs) today) API for building its REST services.
diff --git a/_posts/2021-01-14-resteasy-4.6.0.Final.md b/content/posts/2021-01-14-resteasy-4.6.0.Final.md
similarity index 95%
rename from _posts/2021-01-14-resteasy-4.6.0.Final.md
rename to content/posts/2021-01-14-resteasy-4.6.0.Final.md
index 4d4b732..8caac72 100644
--- a/_posts/2021-01-14-resteasy-4.6.0.Final.md
+++ b/content/posts/2021-01-14-resteasy-4.6.0.Final.md
@@ -2,8 +2,9 @@
layout: post
title: "RESTEasy 4.6.0.Final is now available"
subtitle: ""
-date: January 14, 2021 14:49:00 EST
+date: 2021-01-14 14:49:00
author: Ron Sigal
+aliases: [/2021/01/14/resteasy-4.6.0.Final/]
---
Version **4.6.0.Final** of RESTEasy is now available. Some notable enhancements are
@@ -22,4 +23,4 @@ In response to a security concern about leakage of third party information, some
Of course, there are upgrades and over twenty bug fixes.
-As always, feedback is welcome. And, as Sgt. Esterhaus used to say on *Hill Street Blues*, "Let's be careful out there" [https://www.youtube.com/watch?v=Jmg86CRBBtw](https://www.youtube.com/watch?v=Jmg86CRBBtw).
\ No newline at end of file
+As always, feedback is welcome. And, as Sgt. Esterhaus used to say on *Hill Street Blues*, "Let's be careful out there" [https://www.youtube.com/watch?v=Jmg86CRBBtw](https://www.youtube.com/watch?v=Jmg86CRBBtw).
diff --git a/_posts/2021-01-19-deploy-resteasy-wadl-to-wildfly.md b/content/posts/2021-01-19-deploy-resteasy-wadl-to-wildfly.md
similarity index 99%
rename from _posts/2021-01-19-deploy-resteasy-wadl-to-wildfly.md
rename to content/posts/2021-01-19-deploy-resteasy-wadl-to-wildfly.md
index f3e5509..fcc8bef 100644
--- a/_posts/2021-01-19-deploy-resteasy-wadl-to-wildfly.md
+++ b/content/posts/2021-01-19-deploy-resteasy-wadl-to-wildfly.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy WADL module deployment on Wildfly"
subtitle: ""
-date: Jan 18th, 2021
+date: 2021-01-18
author: Wei Nan
---
@@ -70,8 +70,3 @@ If you've met any problems during its usage, please feel free to submit issue re
* [RESTEasy Issue Report](https://issues.redhat.com/projects/RESTEASY/summary)
Enjoy!
-
-
-
-
-
diff --git a/_posts/2021-02-18-resteasy-3.15.0.Final.md b/content/posts/2021-02-18-resteasy-3.15.0.Final.md
similarity index 84%
rename from _posts/2021-02-18-resteasy-3.15.0.Final.md
rename to content/posts/2021-02-18-resteasy-3.15.0.Final.md
index 6bb17ac..f1204ba 100644
--- a/_posts/2021-02-18-resteasy-3.15.0.Final.md
+++ b/content/posts/2021-02-18-resteasy-3.15.0.Final.md
@@ -2,11 +2,12 @@
layout: post
title: "RESTEasy 3.15.0.Final is now available"
subtitle: ""
-date: February 18, 2021 14:52:00 EST
+date: 2021-02-18 14:52:00
author: Ron Sigal
+aliases: [/2021/02/18/resteasy-3.15.0.Final/]
---
Version **3.15.0.Final** of RESTEasy is now available. The notable new feature is support for MicroProfile REST Client 2.0. Note that MP REST Client 2.0, besides new features like incorporation of SSE and greater CDI integration, now depends on Jakarta EE 8 APIs instead of Java EE 7. See the [release notes](https://projects.eclipse.org/projects/technology.microprofile/releases/rest-client-2.0) for more information.
There are also upgrades and bug fixes.
-As always, feedback is welcome. Stay safe, and, depending on where you are, stay warm or be cool.
\ No newline at end of file
+As always, feedback is welcome. Stay safe, and, depending on where you are, stay warm or be cool.
diff --git a/_posts/2021-04-05-blog-ParamConverter-with-Quarkus.md b/content/posts/2021-04-05-blog-ParamConverter-with-Quarkus.md
similarity index 98%
rename from _posts/2021-04-05-blog-ParamConverter-with-Quarkus.md
rename to content/posts/2021-04-05-blog-ParamConverter-with-Quarkus.md
index e08ac87..431c7c2 100644
--- a/_posts/2021-04-05-blog-ParamConverter-with-Quarkus.md
+++ b/content/posts/2021-04-05-blog-ParamConverter-with-Quarkus.md
@@ -2,8 +2,9 @@
layout: post
title: "JAX-RS ParamConverter with Quarkus"
subtitle: ""
-date: Apr 5, 2021
+date: 2021-04-05
author: Rebecca Searls
+aliases: [/2021/04/05/blog-ParamConverter-with-Quarkus/]
---
Recently RESTEasy had a request by a user who was implementing their REST
service with Quarkus for support of an endpoint input parameter type java.time.Instant.
@@ -173,4 +174,4 @@ writing a RESTful service with Quarkus.
References
-[[1] Quarkus getting-started ](https://quarkus.io/guides/getting-started)
\ No newline at end of file
+[[1] Quarkus getting-started ](https://quarkus.io/guides/getting-started)
diff --git a/_posts/2021-07-06-resteasy-4.6.2.Final.md b/content/posts/2021-07-06-resteasy-4.6.2.Final.md
similarity index 94%
rename from _posts/2021-07-06-resteasy-4.6.2.Final.md
rename to content/posts/2021-07-06-resteasy-4.6.2.Final.md
index 6e0386b..e842a81 100644
--- a/_posts/2021-07-06-resteasy-4.6.2.Final.md
+++ b/content/posts/2021-07-06-resteasy-4.6.2.Final.md
@@ -2,8 +2,9 @@
layout: post
title: "Quarkus 2, RESTEasy 4.6 fixes and more"
subtitle: ""
-date: July 6, 2021 00:45:00 CEST
+date: 2021-07-06 00:45:00
author: Alessio Soldano
+aliases: [/2021/07/06/resteasy-4.6.2.Final/]
---
I'm sure you heard [Quarkus 2.0 has been released](https://quarkus.io/blog/quarkus-2-0-0-final-released/) last week; one of the interesting additions of the second major of Quarkus is MicroProfile 4 support... and when it comes to MicroProfile REST Client 2.0 implementation that has been achieved my moving from the 4.5 to the 4.6 series of RESTEasy.
diff --git a/_posts/2021-07-08-resteasy-4.7.0.Final.md b/content/posts/2021-07-08-resteasy-4.7.0.Final.md
similarity index 94%
rename from _posts/2021-07-08-resteasy-4.7.0.Final.md
rename to content/posts/2021-07-08-resteasy-4.7.0.Final.md
index 4cd10a2..4666507 100644
--- a/_posts/2021-07-08-resteasy-4.7.0.Final.md
+++ b/content/posts/2021-07-08-resteasy-4.7.0.Final.md
@@ -2,8 +2,9 @@
layout: post
title: "RESTEasy 4.7.0.Final is now available"
subtitle: ""
-date: July 8, 2021 14:49:00 PDT
+date: 2021-07-08 14:49:00
author: James R. Perkins
+aliases: [/2021/07/08/resteasy-4.7.0.Final/]
---
I'm pleased to announce that RESTEasy 4.7.0.Final has been released.
@@ -28,4 +29,4 @@ As usual the documentation can be found on the [documentation site](https://docs
## Full Release Notes
-The full release notes can be found on the [RESTEasy JIRA](https://issues.redhat.com/secure/ReleaseNote.jspa?projectId=12310560&version=12353153).
\ No newline at end of file
+The full release notes can be found on the [RESTEasy JIRA](https://issues.redhat.com/secure/ReleaseNote.jspa?projectId=12310560&version=12353153).
diff --git a/_posts/2021-07-29-separate-spring-and-microprofile.md b/content/posts/2021-07-29-separate-spring-and-microprofile.md
similarity index 99%
rename from _posts/2021-07-29-separate-spring-and-microprofile.md
rename to content/posts/2021-07-29-separate-spring-and-microprofile.md
index 0c85528..cf2907e 100644
--- a/_posts/2021-07-29-separate-spring-and-microprofile.md
+++ b/content/posts/2021-07-29-separate-spring-and-microprofile.md
@@ -2,7 +2,7 @@
layout: post
title: "Separating RESTEasy Spring And Microprofile Components Into Independent Subprojects."
subtitle: ""
-date: July 29, 2021
+date: 2021-07-29
author: Wei Nan Li
---
diff --git a/_posts/2021-09-23-announcements-and-releases.md b/content/posts/2021-09-23-announcements-and-releases.md
similarity index 97%
rename from _posts/2021-09-23-announcements-and-releases.md
rename to content/posts/2021-09-23-announcements-and-releases.md
index 457e312..f16322d 100644
--- a/_posts/2021-09-23-announcements-and-releases.md
+++ b/content/posts/2021-09-23-announcements-and-releases.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy Announcements and Plans"
subtitle: ""
-date: September 23, 2021 11:11:11 PDT
+date: 2021-09-23 11:11:11
author: James R. Perkins
---
@@ -55,4 +55,4 @@ specifications which are part of [Jakarta EE 9.1](https://jakarta.ee/specificati
## Other Announcements
We have enabled [discussions on GitHub](https://github.com/resteasy/resteasy/discussions) for those that want something
-other than mailing lists.
\ No newline at end of file
+other than mailing lists.
diff --git a/_posts/2021-10-13-resteasy-spring-wildfly-and-more.md b/content/posts/2021-10-13-resteasy-spring-wildfly-and-more.md
similarity index 99%
rename from _posts/2021-10-13-resteasy-spring-wildfly-and-more.md
rename to content/posts/2021-10-13-resteasy-spring-wildfly-and-more.md
index 044c028..c5c7005 100644
--- a/_posts/2021-10-13-resteasy-spring-wildfly-and-more.md
+++ b/content/posts/2021-10-13-resteasy-spring-wildfly-and-more.md
@@ -2,7 +2,7 @@
layout: post
title: "Deploying `resteasy-spring` based Project Into WildFly Full Distribution"
subtitle: ""
-date: Oct 13, 2021
+date: 2021-10-13
author: Wei Nan Li
---
diff --git a/_posts/2021-11-03-http-engine.md b/content/posts/2021-11-03-http-engine.md
similarity index 98%
rename from _posts/2021-11-03-http-engine.md
rename to content/posts/2021-11-03-http-engine.md
index cacc5fb..e70db2f 100644
--- a/_posts/2021-11-03-http-engine.md
+++ b/content/posts/2021-11-03-http-engine.md
@@ -2,7 +2,7 @@
layout: post
title: "Supporting HTTP Engine Registration In RESTEasy Client and RESTEasy MicroProfile Client"
subtitle: ""
-date: Nov 03, 2021
+date: 2021-11-03
author: Wei Nan Li
---
@@ -68,8 +68,3 @@ public interface NgHTTP2 {
With above interface we can make call to the URL address.
Hope this new feature is useful to you :D
-
-
-
-
-
diff --git a/_posts/2021-11-04-resteasy-5.0.0-release.md b/content/posts/2021-11-04-resteasy-5.0.0-release.md
similarity index 96%
rename from _posts/2021-11-04-resteasy-5.0.0-release.md
rename to content/posts/2021-11-04-resteasy-5.0.0-release.md
index 8734eee..99211ca 100644
--- a/_posts/2021-11-04-resteasy-5.0.0-release.md
+++ b/content/posts/2021-11-04-resteasy-5.0.0-release.md
@@ -2,8 +2,9 @@
layout: post
title: "RESTEasy 5.0.0 Released"
subtitle: ""
-date: November 4, 2021 11:11:11 PDT
+date: 2021-11-04 11:11:11
author: James R. Perkins
+aliases: [/2021/11/04/resteasy-5.0.0-release/]
---
I'm pleased to announce the release of RESTEasy 5. This is the first major release in some time now. Along with this
@@ -103,4 +104,4 @@ RESTEasy 5 is now tested and working with Java SE 17.
RESTEasy is going to migrate to [Jakarta RESTful Web Services 3.0](https://jakarta.ee/specifications/restful-ws/3.0/).
The only change in this release will be migrating from the `javax` namespace to `jakarta`. The plan is to make this
-change immediately and move the version to RESTEasy 6.
\ No newline at end of file
+change immediately and move the version to RESTEasy 6.
diff --git a/_posts/2021-11-22-feature-pack.md b/content/posts/2021-11-22-feature-pack.md
similarity index 99%
rename from _posts/2021-11-22-feature-pack.md
rename to content/posts/2021-11-22-feature-pack.md
index 95cb179..f9f0afd 100644
--- a/_posts/2021-11-22-feature-pack.md
+++ b/content/posts/2021-11-22-feature-pack.md
@@ -2,7 +2,7 @@
layout: post
title: "Using The RESTEasy Galleon Feature Pack In WildFly"
subtitle: ""
-date: Nov 22, 2021
+date: 2021-11-22
author: Wei Nan Li
---
@@ -147,4 +147,3 @@ Hello, world!
From the above command output, we can see the service can be accessed by the `curl` command, and the sample service works, and it verifies that our installed galleon feature pack works properly.
Above is a brief introduction to the new feature pack feature provided by RESTEasy, wish it’s useful to you :D
-
diff --git a/_posts/2021-12-02-resteasy-releases.md b/content/posts/2021-12-02-resteasy-releases.md
similarity index 63%
rename from _posts/2021-12-02-resteasy-releases.md
rename to content/posts/2021-12-02-resteasy-releases.md
index 16b0d2b..6d273d6 100644
--- a/_posts/2021-12-02-resteasy-releases.md
+++ b/content/posts/2021-12-02-resteasy-releases.md
@@ -2,17 +2,17 @@
layout: post
title: "RESTEasy Releases"
subtitle: ""
-date: December 2, 2021 11:11:11 PDT
+date: 2021-12-02 11:11:11
author: James R. Perkins
---
It's been about a month since the initial [5.0.0 release]({% post_url 2021-11-04-resteasy-5.0.0-release %}) and now is
-the time for some updates. Today [5.0.1.Final]({{ site.baseurl }}/downloads#501final) was released along with
-[4.7.4.Final]({{ site.baseurl }}/downloads#474final). These are both bug fix releases.
+the time for some updates. Today [5.0.1.Final](/downloads#501final) was released along with
+[4.7.4.Final](/downloads#474final). These are both bug fix releases.
-Along with the two bug fix releases comes [RESTEasy 6.0.0.Beta1]({{ site.baseurl }}/downloads#600beta1). This is the
+Along with the two bug fix releases comes [RESTEasy 6.0.0.Beta1](/downloads#600beta1). This is the
first official [Jakarta RESTful Web Services 3.0](https://jakarta.ee/specifications/restful-ws/3.0/) for RESTEasy. As
previously stated there is no plan for new features in 6.0.0. This is simply the same as 5.0.0 with the `jakarta`
namespace change.
-As always if you try these new releases and find bugs please file a [JIRA](https://issues.redhat.com/browse/RESTEASY).
\ No newline at end of file
+As always if you try these new releases and find bugs please file a [JIRA](https://issues.redhat.com/browse/RESTEASY).
diff --git a/_posts/2021-12-13-tracing-feature.md b/content/posts/2021-12-13-tracing-feature.md
similarity index 99%
rename from _posts/2021-12-13-tracing-feature.md
rename to content/posts/2021-12-13-tracing-feature.md
index 047947b..b86dd81 100644
--- a/_posts/2021-12-13-tracing-feature.md
+++ b/content/posts/2021-12-13-tracing-feature.md
@@ -92,4 +92,3 @@ As the above screenshot shows, the tracing information is output correctly. And
Until now we have make the Tracing Feature working with the provisioned WildFly which has RESTEasy Feature Pack installed.
-
diff --git a/_posts/2021-12-24-bootstrap-jaxrs31.md b/content/posts/2021-12-24-bootstrap-jaxrs31.md
similarity index 99%
rename from _posts/2021-12-24-bootstrap-jaxrs31.md
rename to content/posts/2021-12-24-bootstrap-jaxrs31.md
index f240428..d8355e8 100644
--- a/_posts/2021-12-24-bootstrap-jaxrs31.md
+++ b/content/posts/2021-12-24-bootstrap-jaxrs31.md
@@ -2,7 +2,7 @@
layout: post
title: "Java SE Bootstrap API In Jakarta REST 3.1"
subtitle: ""
-date: Dec 24, 2021
+date: 2021-12-24
author: Jim Ma
---
After JavaEE was moved under Eclipse Foundation, we started seeing many changes on the specifications;
@@ -181,10 +181,3 @@ All these changes are pushed to [ee10 branch](https://github.com/resteasy/restea
This features is still in development phase and fixes / improvements might still be required. If you want to have a taste of what's coming with this
new api, please check out this branch and play with this api a bit. When you get any issues or questions, please
talk with us on [Github Discussions](https://github.com/resteasy/resteasy/discussions).
-
-
-
-
-
-
-
diff --git a/_posts/2022-01-13-resteasy-6.0.0-release.md b/content/posts/2022-01-13-resteasy-6.0.0-release.md
similarity index 63%
rename from _posts/2022-01-13-resteasy-6.0.0-release.md
rename to content/posts/2022-01-13-resteasy-6.0.0-release.md
index 443bc7f..e13cc64 100644
--- a/_posts/2022-01-13-resteasy-6.0.0-release.md
+++ b/content/posts/2022-01-13-resteasy-6.0.0-release.md
@@ -2,11 +2,12 @@
layout: post
title: "RESTEasy 6.0.0 Released"
subtitle: ""
-date: January 13, 2022 11:11:11 PDT
+date: 2022-01-13 11:11:11
author: James R. Perkins
+aliases: [/2022/01/13/resteasy-6.0.0-release/]
---
-I'm pleased to announce the release of [RESTEasy 6]({{ site.baseurl }}/downloads#600final). This is the first release of
+I'm pleased to announce the release of [RESTEasy 6](/downloads#600final). This is the first release of
RESTEasy that is [Jakarta RESTful Web Services 3.0](https://jakarta.ee/specifications/restful-ws/3.0/) compliant.
Overall this release is equivalent to RESTEasy 5.0 with changes for the `jakarta` namespace changes.
@@ -19,5 +20,5 @@ RESTEasy 6.1 will be targeting Jakarta RESTful Web Services 3.1 which should be
## Other Releases
-With the release of RESTEasy 6, there have also been bug releases for [RESTEasy 5]({{ site.baseurl }}/downloads#502final)
-and [RESTEasy 4.7]({{ site.baseurl }}/downloads#475final). See the [announcements](https://github.com/resteasy/resteasy/discussions/categories/announcements) for more details.
\ No newline at end of file
+With the release of RESTEasy 6, there have also been bug releases for [RESTEasy 5](/downloads#502final)
+and [RESTEasy 4.7](/downloads#475final). See the [announcements](https://github.com/resteasy/resteasy/discussions/categories/announcements) for more details.
diff --git a/_posts/2022-04-14-resteasy-spring-6-wildfly-example.md b/content/posts/2022-04-14-resteasy-spring-6-wildfly-example.md
similarity index 100%
rename from _posts/2022-04-14-resteasy-spring-6-wildfly-example.md
rename to content/posts/2022-04-14-resteasy-spring-6-wildfly-example.md
diff --git a/_posts/2022-04-19-resteasy-releases.md b/content/posts/2022-04-19-resteasy-releases.md
similarity index 93%
rename from _posts/2022-04-19-resteasy-releases.md
rename to content/posts/2022-04-19-resteasy-releases.md
index 328b327..1b4ed39 100644
--- a/_posts/2022-04-19-resteasy-releases.md
+++ b/content/posts/2022-04-19-resteasy-releases.md
@@ -2,16 +2,16 @@
layout: post
title: "RESTEasy Releases"
subtitle: ""
-date: April 19, 2022 11:11:11 PDT
+date: 2022-04-19 11:11:11
author: James R. Perkins
---
It is time for the next quarterly releases of RESTEasy. With these releases I'm very pleased to announce the release
-of [RESTEasy 6.1.0.Beta1]({{ site.basurl }}/downloads#610beta1). This is the first release which implements
+of [RESTEasy 6.1.0.Beta1](/downloads#610beta1). This is the first release which implements
[Jakarta RESTful Web Services 3.1](https://jakarta.ee/specifications/restful-ws/3.1/).
-Along with the 6.1.0.Beta1 release, there have been three bug fix releases; [6.0.1.Final]({{ site.baseurl }}/downloads#601final),
-[5.0.3.Final]({{ site.baseurl }}/downloads#503final) and [4.7.6.Final]({{ site.baseurl }}/downloads#476final).
+Along with the 6.1.0.Beta1 release, there have been three bug fix releases; [6.0.1.Final](/downloads#601final),
+[5.0.3.Final](/downloads#503final) and [4.7.6.Final](/downloads#476final).
## RESTEasy 6.1.0
diff --git a/_posts/2022-04-26-resteasy-6.1.0.Beta2.md b/content/posts/2022-04-26-resteasy-6.1.0.Beta2.md
similarity index 83%
rename from _posts/2022-04-26-resteasy-6.1.0.Beta2.md
rename to content/posts/2022-04-26-resteasy-6.1.0.Beta2.md
index 1a8ba8a..023f040 100644
--- a/_posts/2022-04-26-resteasy-6.1.0.Beta2.md
+++ b/content/posts/2022-04-26-resteasy-6.1.0.Beta2.md
@@ -2,12 +2,13 @@
layout: post
title: "RESTEasy 6.1.0.Beta2 Release"
subtitle: ""
-date: April 26, 2022 11:11:11 PDT
+date: 2022-04-26 11:11:11
author: James R. Perkins
+aliases: [/2022/04/26/resteasy-6.1.0.Beta2/]
---
The [Jakarta RESTful Web Services 3.1 specification](https://jakarta.ee/specifications/restful-ws/3.1/) is now final
-and released to Maven Central. Given this, we have released [RESTEasy 6.1.0.Beta2]({{ site.basurl }}/downloads#610beta2).
+and released to Maven Central. Given this, we have released [RESTEasy 6.1.0.Beta2](/downloads#610beta2).
This release mostly contains component upgrades. However, you no longer need to add the JBoss Nexus Repository to use the
`jakarta.ws.rs:jakarta.ws.rs-api` dependency.
diff --git a/_posts/2022-07-21-resteasy-releases.md b/content/posts/2022-07-21-resteasy-releases.md
similarity index 92%
rename from _posts/2022-07-21-resteasy-releases.md
rename to content/posts/2022-07-21-resteasy-releases.md
index b3b8e4c..c895d37 100644
--- a/_posts/2022-07-21-resteasy-releases.md
+++ b/content/posts/2022-07-21-resteasy-releases.md
@@ -2,16 +2,16 @@
layout: post
title: "RESTEasy Releases"
subtitle: ""
-date: July 21, 2022 11:11:11 PDT
+date: 2022-07-21 11:11:11
author: James R. Perkins
---
It is once again time for the next quarterly releases of RESTEasy. There have been releases of the following 4 streams:
-* [6.1.0.Beta3](https://github.com/resteasy/resteasy/releases/tag/6.1.0.Beta3){:target="_blank"}
-* [6.0.3.Final](https://github.com/resteasy/resteasy/releases/tag/6.0.3.Final){:target="_blank"}
-* [5.0.4.Final](https://github.com/resteasy/resteasy/releases/tag/5.0.4.Final){:target="_blank"}
-* [4.7.7.Final](https://github.com/resteasy/resteasy/releases/tag/4.7.7.Final){:target="_blank"}
+* [6.1.0.Beta3](https://github.com/resteasy/resteasy/releases/tag/6.1.0.Beta3)
+* [6.0.3.Final](https://github.com/resteasy/resteasy/releases/tag/6.0.3.Final)
+* [5.0.4.Final](https://github.com/resteasy/resteasy/releases/tag/5.0.4.Final)
+* [4.7.7.Final](https://github.com/resteasy/resteasy/releases/tag/4.7.7.Final)
### RESTEasy 6.1.0.Beta3
@@ -48,8 +48,8 @@ Full release notes for this release can be found [here](https://issues.redhat.co
Like 5.0.4.Final, this release targets [Jakarta RESTful Web Services 2.1](https://jakarta.ee/specifications/restful-ws/2.1/).
The difference is the 4.7 release stream still includes RESTEasy Spring and RESTEasy MicroProfile artifacts. These
artifacts still exist under different projects. For RESTEasy MicroProfile the new project is
-[resteasy-microprofile](https://github.com/resteasy/resteasy-microprofile){:target="_blank"}. For RESTEasy Spring the
-new project is [resteasy-spring](https://github.com/resteasy/resteasy-spring){:target="_blank"}.
+[resteasy-microprofile](https://github.com/resteasy/resteasy-microprofile). For RESTEasy Spring the
+new project is [resteasy-spring](https://github.com/resteasy/resteasy-spring).
This is likely the last release for this stream in favor of using 5.0 and the separate release streams for
RESTEasy MicroProfile and RESTEasy Spring.
diff --git a/_posts/2022-08-02-resteasy-6.1.0-release.md b/content/posts/2022-08-02-resteasy-6.1.0-release.md
similarity index 94%
rename from _posts/2022-08-02-resteasy-6.1.0-release.md
rename to content/posts/2022-08-02-resteasy-6.1.0-release.md
index e17efc6..f2bed4a 100644
--- a/_posts/2022-08-02-resteasy-6.1.0-release.md
+++ b/content/posts/2022-08-02-resteasy-6.1.0-release.md
@@ -2,11 +2,12 @@
layout: post
title: "RESTEasy 6.1.0.Final Release"
subtitle: ""
-date: August 2, 2022 11:11:11 PDT
+date: 2022-08-02 11:11:11
author: James R. Perkins
+aliases: [/2022/08/02/resteasy-6.1.0-release/]
---
-We are happy to announce the final version of [RESTEasy 6.1.0.Final]({{ site.baseurl }}/downloads#610final). This is our first final release implementing the
+We are happy to announce the final version of [RESTEasy 6.1.0.Final](/downloads#610final). This is our first final release implementing the
[Jakarta RESTful Web Services 3.1](https://jakarta.ee/specifications/restful-ws/3.1/) specification.
### What has changed in Jakarta RESTful Web Services 3.1
@@ -80,4 +81,4 @@ progress.
### New Features
While there have not been many new features in RESTEasy itself, there has been one new [client utility](https://issues.redhat.com/browse/RESTEASY-2856) introduced.
-Currently, this contains some client authentication filters.
\ No newline at end of file
+Currently, this contains some client authentication filters.
diff --git a/_posts/2022-09-08-resteasy-6.2.0.Beta1-release.md b/content/posts/2022-09-08-resteasy-6.2.0.Beta1-release.md
similarity index 81%
rename from _posts/2022-09-08-resteasy-6.2.0.Beta1-release.md
rename to content/posts/2022-09-08-resteasy-6.2.0.Beta1-release.md
index 079850f..733ff7a 100644
--- a/_posts/2022-09-08-resteasy-6.2.0.Beta1-release.md
+++ b/content/posts/2022-09-08-resteasy-6.2.0.Beta1-release.md
@@ -2,11 +2,12 @@
layout: post
title: "RESTEasy 6.2.0.Beta1 Release"
subtitle: ""
-date: September 8, 2022 11:11:11 PDT
+date: 2022-09-08 11:11:11
author: James R. Perkins
+aliases: [/2022/09/08/resteasy-6.2.0.Beta1-release/]
---
-Today [RESTEasy 6.2.0.Beta1]({{ site.baseurl }}/downloads#final) was released. Except component
+Today [RESTEasy 6.2.0.Beta1](/downloads#final) was released. Except component
upgrades, there are two changes which resulted in a 6.2.0.Beta1 instead of a 6.1.1.Final.
1. [RESTEASY-3085](https://issues.redhat.com/browse/RESTEASY-3085) - Upgrade Jackson to 2.13
@@ -21,4 +22,4 @@ the `EntityPart.withName()` will work with RESTEasy 6.2.
You can read the full release notes on the [tag](https://github.com/resteasy/resteasy/releases/tag/6.2.0.Beta1).
-A 6.2.0.Final release is scheduled for 2022-09-22.
\ No newline at end of file
+A 6.2.0.Final release is scheduled for 2022-09-22.
diff --git a/_posts/2022-09-23-resteasy-6.2.0.Final-release.md b/content/posts/2022-09-23-resteasy-6.2.0.Final-release.md
similarity index 91%
rename from _posts/2022-09-23-resteasy-6.2.0.Final-release.md
rename to content/posts/2022-09-23-resteasy-6.2.0.Final-release.md
index 9639717..d18a9a4 100644
--- a/_posts/2022-09-23-resteasy-6.2.0.Final-release.md
+++ b/content/posts/2022-09-23-resteasy-6.2.0.Final-release.md
@@ -2,11 +2,12 @@
layout: post
title: "RESTEasy 6.2.0.Final Release"
subtitle: ""
-date: September 23, 2022 11:11:11 PDT
+date: 2022-09-23 11:11:11
author: James R. Perkins
+aliases: [/2022/09/23/resteasy-6.2.0.Final-release/]
---
-We are happy to announce the release of [RESTEasy 6.2.0.Final]({{ site.baseurl }}/downloads#final) and
+We are happy to announce the release of [RESTEasy 6.2.0.Final](/downloads#final) and
[RESTEasy MicroProfile 2.0.0.Final](https://github.com/resteasy/resteasy-microprofile/releases/tag/2.0.0.Final). Both
of these will end up in the up and coming [WildFly 27](https://wildfly.org) release.
diff --git a/_posts/2022-10-10-resteasy-6.2.1.Final-release.md b/content/posts/2022-10-10-resteasy-6.2.1.Final-release.md
similarity index 83%
rename from _posts/2022-10-10-resteasy-6.2.1.Final-release.md
rename to content/posts/2022-10-10-resteasy-6.2.1.Final-release.md
index eb31176..33e49b1 100644
--- a/_posts/2022-10-10-resteasy-6.2.1.Final-release.md
+++ b/content/posts/2022-10-10-resteasy-6.2.1.Final-release.md
@@ -2,11 +2,12 @@
layout: post
title: "RESTEasy 6.2.1.Final Release"
subtitle: ""
-date: October 10, 2022 11:11:11 PDT
+date: 2022-10-10 11:11:11
author: James R. Perkins
+aliases: [/2022/10/10/resteasy-6.2.1.Final-release/]
---
-Today [RESTEasy 6.2.1.Final]({{ site.baseurl }}/downloads#621final) was released. This is a minor release mostly
+Today [RESTEasy 6.2.1.Final](/downloads#621final) was released. This is a minor release mostly
consisting of component upgrades and some fixes for running RESTEasy with the security manager enabled. This was done
for the up and coming [WildFly 27.0.0.Final](https://www.wildfly.org/) release.
diff --git a/_posts/2022-11-01-sebootstrap-usage.md b/content/posts/2022-11-01-sebootstrap-usage.md
similarity index 99%
rename from _posts/2022-11-01-sebootstrap-usage.md
rename to content/posts/2022-11-01-sebootstrap-usage.md
index f059076..d094002 100644
--- a/_posts/2022-11-01-sebootstrap-usage.md
+++ b/content/posts/2022-11-01-sebootstrap-usage.md
@@ -137,4 +137,3 @@ To understand the design of the `SeBootstrap` and its implementation inside REST
- [An introduction to the SeBootstrap Spec and the RESTEasy Implementation](https://weinan.io/2022/10/26/resteasy-bootstrap.html)
Enjoy!
-
diff --git a/_posts/2022-12-13-resteasy-releases.md b/content/posts/2022-12-13-resteasy-releases.md
similarity index 84%
rename from _posts/2022-12-13-resteasy-releases.md
rename to content/posts/2022-12-13-resteasy-releases.md
index 77540c7..64ca434 100644
--- a/_posts/2022-12-13-resteasy-releases.md
+++ b/content/posts/2022-12-13-resteasy-releases.md
@@ -2,12 +2,12 @@
layout: post
title: "RESTEasy Releases"
subtitle: ""
-date: December 13, 2022 11:11:11 PDT
+date: 2022-12-13 11:11:11
author: James R. Perkins
---
-The time has come for two new RESTEasy releases; [6.2.2.Final]({{ site.baseurl }}/downloads#622final)
-and [5.0.5.Final]({{ site.baseurl }}/downloads#505final). These are both bug fix releases.
+The time has come for two new RESTEasy releases; [6.2.2.Final](/downloads#622final)
+and [5.0.5.Final](/downloads#505final). These are both bug fix releases.
RESTEasy [6.2.2.Final](https://github.com/resteasy/resteasy/discussions/3363) targets
[Jakarta RESTful Web Services 3.1](https://jakarta.ee/specifications/restful-ws/3.1/). Full release notes for this
diff --git a/_posts/2023-02-20-resteasy-microprofile-openapi.md b/content/posts/2023-02-20-resteasy-microprofile-openapi.md
similarity index 99%
rename from _posts/2023-02-20-resteasy-microprofile-openapi.md
rename to content/posts/2023-02-20-resteasy-microprofile-openapi.md
index 4db6637..09924a4 100644
--- a/_posts/2023-02-20-resteasy-microprofile-openapi.md
+++ b/content/posts/2023-02-20-resteasy-microprofile-openapi.md
@@ -198,4 +198,4 @@ It is recommended to use the feature in a container like Quarkus and WildFly. Bu
The test case shows how to wrap the `smallrye-open-api/extension-jaxrs` as `com.sun.net.httpserver.HttpHandler` and use it in `com.sun.net.httpserver.HttpServer`.
-Above is the brief introduction to the implementation of the OpenAPI feature in WildFly and Quarkus ecosystems.
\ No newline at end of file
+Above is the brief introduction to the implementation of the OpenAPI feature in WildFly and Quarkus ecosystems.
diff --git a/_posts/2023-03-01-resteasy-releases.md b/content/posts/2023-03-01-resteasy-releases.md
similarity index 94%
rename from _posts/2023-03-01-resteasy-releases.md
rename to content/posts/2023-03-01-resteasy-releases.md
index 629d6c5..9a08985 100644
--- a/_posts/2023-03-01-resteasy-releases.md
+++ b/content/posts/2023-03-01-resteasy-releases.md
@@ -2,7 +2,7 @@
layout: post
title: "Q1 2023 RESTEasy Quarterly Releases"
subtitle: ""
-date: March 01, 2023 11:11:11 PDT
+date: 2023-03-01 11:11:11
author: James R. Perkins
---
@@ -15,7 +15,7 @@ contain an `@OPTIONS` annotation. This will now simply return a valid response i
old behavior can be enabled by setting the `dev.resteasy.throw.options.exception` configuration parameter to `true`.
This change happened in all the releases listed below.
-## [6.2.3.Final]({{ site.baseurl }}/downloads#623final)
+## [6.2.3.Final](/downloads#623final)
This is the latest release for the [Jakarta RESTful Web Services 3.1](https://jakarta.ee/specifications/restful-ws/3.1/)
specification. The release consists mostly of bug fixes and component upgrades.
@@ -27,7 +27,7 @@ Jackson components were upgraded from 2.13 to the latest 2.14. This was done as
Full release notes for this release can be found [here](https://github.com/resteasy/resteasy/releases/tag/6.2.3.Final).
-## [5.0.6.Final]({{ site.baseurl }}/downloads#506final)
+## [5.0.6.Final](/downloads#506final)
This is the latest, and preferred, release for the
[Jakarta RESTful Web Services 2.1](https://jakarta.ee/specifications/restful-ws/2.1/) specification. Except the
@@ -36,7 +36,7 @@ upgrades with a few bug fixes.
Full release notes for this release can be found [here](https://github.com/resteasy/resteasy/releases/tag/5.0.6.Final).
-## [4.7.9.Final]({{ site.baseurl }}/downloads#479final)
+## [4.7.9.Final](/downloads#479final)
This release targets the [Jakarta RESTful Web Services 2.1](https://jakarta.ee/specifications/restful-ws/2.1/)
specification. This will likely be the final release from the 4.x stream. It was done primarily to resolve the CVE
diff --git a/_posts/2023-04-12-tracing-feature-in-wildfly.md b/content/posts/2023-04-12-tracing-feature-in-wildfly.md
similarity index 99%
rename from _posts/2023-04-12-tracing-feature-in-wildfly.md
rename to content/posts/2023-04-12-tracing-feature-in-wildfly.md
index 63840ab..1ddd6a9 100644
--- a/_posts/2023-04-12-tracing-feature-in-wildfly.md
+++ b/content/posts/2023-04-12-tracing-feature-in-wildfly.md
@@ -186,7 +186,7 @@ HTTP/1.1 200 OK
Connection: keep-alive
Content-Type: application/octet-stream
Content-Length: 7
-Date: Tue, 11 Apr 2023 18:43:04 GMT
+Date: 2023-04-11 18:43:04
...
```
@@ -203,4 +203,3 @@ From the above output, we can see the tracing feature is disabled.
[^galleon]: [Galleon Provisioning](https://github.com/wildfly/galleon)
[^wildflytracing]: [Using the Tracing Feature](https://github.com/wildfly/wildfly/pull/15198/files#diff-b1b3a12a4b68c3397dacaab84d50790141d87677f46552c5138f520312aa3782R155)
-
diff --git a/_posts/2023-05-15-resteasy-releases.md b/content/posts/2023-05-16-resteasy-releases.md
similarity index 91%
rename from _posts/2023-05-15-resteasy-releases.md
rename to content/posts/2023-05-16-resteasy-releases.md
index cd53ec7..7f3c5d5 100644
--- a/_posts/2023-05-15-resteasy-releases.md
+++ b/content/posts/2023-05-16-resteasy-releases.md
@@ -2,14 +2,14 @@
layout: post
title: "Q2 2023 RESTEasy Quarterly Releases"
subtitle: ""
-date: May 15, 2023 21:11:11 PDT
+date: 2023-05-16 21:11:11
author: James R. Perkins
---
Today we announce some new RESTEasy releases. These are the 2023 Q2 releases. There have been two releases; 5.0.7.Final
and 6.2.4.Final.
-## [6.2.4.Final]({{ site.baseurl }}/downloads#624final)
+## [6.2.4.Final](/downloads#624final)
This is the latest release for the [Jakarta RESTful Web Services 3.1](https://jakarta.ee/specifications/restful-ws/3.1/)
specification. The release consists mostly of bug fixes and component upgrades.
@@ -21,7 +21,7 @@ which would work with Serlvlet 5.0. This required an upgrade to Servlet 6.0.
Full release notes for this release can be found [here](https://github.com/resteasy/resteasy/releases/tag/6.2.4.Final).
-## [5.0.7.Final]({{ site.baseurl }}/downloads#507final)
+## [5.0.7.Final](/downloads#507final)
This is the latest, and preferred, release for the
[Jakarta RESTful Web Services 2.1](https://jakarta.ee/specifications/restful-ws/2.1/) specification. This release
diff --git a/_posts/2023-05-30-grpc-in-wildfly-pt2.md b/content/posts/2023-05-30-grpc-in-wildfly-pt2.md
similarity index 100%
rename from _posts/2023-05-30-grpc-in-wildfly-pt2.md
rename to content/posts/2023-05-30-grpc-in-wildfly-pt2.md
diff --git a/_posts/2023-08-21-resteasy-releases.md b/content/posts/2023-08-21-resteasy-releases.md
similarity index 87%
rename from _posts/2023-08-21-resteasy-releases.md
rename to content/posts/2023-08-21-resteasy-releases.md
index 9b74bae..90b9d37 100644
--- a/_posts/2023-08-21-resteasy-releases.md
+++ b/content/posts/2023-08-21-resteasy-releases.md
@@ -2,21 +2,21 @@
layout: post
title: "Q3 2023 RESTEasy Quarterly Releases"
subtitle: ""
-date: August 21, 2023 11:11:11 PDT
+date: 2023-08-21 11:11:11
author: James R. Perkins
---
Today we announce some new RESTEasy releases. These are the 2023 Q3 releases. There have been two releases; 5.0.8.Final
and 6.2.5.Final.
-## [6.2.5.Final]({{ site.baseurl }}/downloads#625final)
+## [6.2.5.Final](/downloads#625final)
This is the latest release for the [Jakarta RESTful Web Services 3.1](https://jakarta.ee/specifications/restful-ws/3.1/)
specification. The release consists mostly of bug fixes and component upgrades.
Full release notes for this release can be found [here](https://github.com/resteasy/resteasy/releases/tag/6.2.5.Final).
-## [5.0.8.Final]({{ site.baseurl }}/downloads#508final)
+## [5.0.8.Final](/downloads#508final)
This is the latest, and preferred, release for the
[Jakarta RESTful Web Services 2.1](https://jakarta.ee/specifications/restful-ws/2.1/) specification. This release
diff --git a/_posts/2023-09-12-resteasy-grpc.md b/content/posts/2023-09-12-resteasy-grpc.md
similarity index 99%
rename from _posts/2023-09-12-resteasy-grpc.md
rename to content/posts/2023-09-12-resteasy-grpc.md
index fb79391..a564543 100644
--- a/_posts/2023-09-12-resteasy-grpc.md
+++ b/content/posts/2023-09-12-resteasy-grpc.md
@@ -379,4 +379,3 @@ Above is the overall introduction to the currently RESTEasy gRPC feature and the
[^example-readme]: [grpc-bridge-example/README.md](https://github.com/resteasy/resteasy-examples/blob/main/grpc-bridge-example/README.md)
[^galleon]: [wildfly/galleon](https://github.com/wildfly/galleon)
-
diff --git a/_posts/2023-11-02-resteasy-releases.md b/content/posts/2023-11-02-resteasy-releases.md
similarity index 89%
rename from _posts/2023-11-02-resteasy-releases.md
rename to content/posts/2023-11-02-resteasy-releases.md
index 742a7e5..8ae2ed6 100644
--- a/_posts/2023-11-02-resteasy-releases.md
+++ b/content/posts/2023-11-02-resteasy-releases.md
@@ -2,14 +2,14 @@
layout: post
title: "Q4 2023 RESTEasy Quarterly Releases"
subtitle: ""
-date: November 2, 2023 11:11:11 PDT
+date: 2023-11-02 11:11:11
author: James R. Perkins
---
Today we announce some new RESTEasy releases. These are the 2023 Q4 releases. There have been two releases; 5.0.9.Final
and 6.2.6.Final.
-## [6.2.6.Final]({{ site.baseurl }}/downloads#626final)
+## [6.2.6.Final](/downloads#626final)
This is the latest release for the [Jakarta RESTful Web Services 3.1](https://jakarta.ee/specifications/restful-ws/3.1/)
specification. The release consists mostly of bug fixes and component upgrades. This release includes upgrades to
@@ -17,7 +17,7 @@ Netty and Undertow for [CVE-2023-44487](https://access.redhat.com/security/cve/c
Full release notes for this release can be found [here](https://github.com/resteasy/resteasy/releases/tag/6.2.6.Final).
-## [5.0.9.Final]({{ site.baseurl }}/downloads#509final)
+## [5.0.9.Final](/downloads#509final)
This is the latest, and preferred, release for the
[Jakarta RESTful Web Services 2.1](https://jakarta.ee/specifications/restful-ws/2.1/) specification. This release
diff --git a/_posts/2023-12-06-overview-and-roadmap.md b/content/posts/2023-12-06-overview-and-roadmap.md
similarity index 95%
rename from _posts/2023-12-06-overview-and-roadmap.md
rename to content/posts/2023-12-06-overview-and-roadmap.md
index 18ca3f3..9151983 100644
--- a/_posts/2023-12-06-overview-and-roadmap.md
+++ b/content/posts/2023-12-06-overview-and-roadmap.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy Overview and Roadmap"
subtitle: ""
-date: December 6, 2023 11:11:11 PDT
+date: 2023-12-06 11:11:11
author: James R. Perkins
---
@@ -26,7 +26,7 @@ going final before we can do any final releases.
## Jakarta REST 4.0
-The current target for [Jakarta REST 4.0](https://jakarta.ee/specifications/restful-ws/4.0/){:target="_blank"} is Q1 of 2024.
+The current target for [Jakarta REST 4.0](https://jakarta.ee/specifications/restful-ws/4.0/) is Q1 of 2024.
Jakarta REST 4.0 will bring some significant and breaking changes to the API and implementation. The biggest change
will be the removal of the `@Context` injection and `jakarta.ws.rs.ext.ContextResolver`. These were deprecated for
removal in [Jakarta REST 3.1](https://jakarta.ee/specifications/restful-ws/3.1/jakarta-restful-ws-spec-3.1#context-injection).
@@ -54,7 +54,7 @@ in Kubernetes.
We will be introducing a [new default backing HTTP Client](https://issues.redhat.com/browse/RESTEASY-1694) with
http/2 support. The backing client will be the JDK HTTP Client. This will have some minor caveats. One will be support
-for the `ClientBuilder.hostnameVerifier()`. There is currently [no support](https://bugs.openjdk.org/browse/JDK-8213309){:target="_blank"}
+for the `ClientBuilder.hostnameVerifier()`. There is currently [no support](https://bugs.openjdk.org/browse/JDK-8213309)
for setting a `javax.net.ssl.HostnameVerifier` in the HTTP Client.
## Removal or Deprecations
@@ -80,4 +80,4 @@ Below are the highlights of the road map in no specific order:
* Remove BouncyCastle dependency, [RESTEASY-3431](https://issues.redhat.com/browse/RESTEASY-3431)
* Migrate to JUnit 5, [RESTEASY-3388](https://issues.redhat.com/browse/RESTEASY-3388)
* Keep the JS API or update to remove deprecated code, currently no issue filed.
-* Deprecate/remove the feature pack, [RESTEASY-3432](https://issues.redhat.com/browse/RESTEASY-3432)
\ No newline at end of file
+* Deprecate/remove the feature pack, [RESTEASY-3432](https://issues.redhat.com/browse/RESTEASY-3432)
diff --git a/_posts/2024-01-12-resteasy-releases.md b/content/posts/2024-01-12-resteasy-releases.md
similarity index 93%
rename from _posts/2024-01-12-resteasy-releases.md
rename to content/posts/2024-01-12-resteasy-releases.md
index 3571ae0..7449a3e 100644
--- a/_posts/2024-01-12-resteasy-releases.md
+++ b/content/posts/2024-01-12-resteasy-releases.md
@@ -2,14 +2,14 @@
layout: post
title: "Q1 2024 RESTEasy Quarterly Releases"
subtitle: ""
-date: January 12, 2024 11:11:11 PDT
+date: 2024-01-12 11:11:11
author: James R. Perkins
---
Today we'd like to announce a new RESTEasy releases and a new RESTEasy MicroProfile release.
-## [6.2.7.Final]({{ site.baseurl }}/downloads#627final)
+## [6.2.7.Final](/downloads#627final)
This is the latest release for the [Jakarta RESTful Web Services 3.1](https://jakarta.ee/specifications/restful-ws/3.1/)
specification. The release consists mostly of bug fixes and component upgrades.
diff --git a/_posts/2024-01-23-grpc-jakarta-rs-arrays.md b/content/posts/2024-01-23-grpc-jakarta-rs-arrays.md
similarity index 100%
rename from _posts/2024-01-23-grpc-jakarta-rs-arrays.md
rename to content/posts/2024-01-23-grpc-jakarta-rs-arrays.md
diff --git a/_posts/2024-01-31-resteasy-glow.md b/content/posts/2024-01-31-resteasy-glow.md
similarity index 98%
rename from _posts/2024-01-31-resteasy-glow.md
rename to content/posts/2024-01-31-resteasy-glow.md
index d06edcb..6fb6b9f 100644
--- a/_posts/2024-01-31-resteasy-glow.md
+++ b/content/posts/2024-01-31-resteasy-glow.md
@@ -6,7 +6,7 @@ date: 2024-01-31
author: Wei Nan Li
---
-Recently I created a sample project showing the usage of the feature for deploying a RESTEasy based sample project[^sample-project]. The project contains a minimal REST based service and a test case, and it uses the `maven-wildfly-plugin` to produce a provisioned WildFly server for the integration testing.
+Recently I created a sample project showing the usage of the feature for deploying a RESTEasy-based sample project[^sample-project]. The project contains a minimal REST based service and a test case, and it uses the `maven-wildfly-plugin` to produce a provisioned WildFly server for the integration testing.
The `maven-wildfly-plugin` has integrated WildFly Glow[^glow] since `5.0.0.Alpha1`[^glow-integration]. I have created the PR to the sample project to enable the feature[^enable-glow].
@@ -115,5 +115,3 @@ Above is the brief usage of the Glow feature to automate the server provision pr
[^sample-project]: [https://github.com/liweinan/resteasy-wildfly](https://github.com/liweinan/resteasy-wildfly)
[^glow-integration]: [https://github.com/wildfly/wildfly-maven-plugin/pull/374](https://github.com/wildfly/wildfly-maven-plugin/pull/374)
[^enable-glow]: [resteasy-wildfly / Use Glow #6](https://github.com/liweinan/resteasy-wildfly/pull/6)
-
-
diff --git a/_posts/2024-03-22-6.2.8-releas.md b/content/posts/2024-03-22-6.2.8-release.md
similarity index 93%
rename from _posts/2024-03-22-6.2.8-releas.md
rename to content/posts/2024-03-22-6.2.8-release.md
index 19499f5..484c85b 100644
--- a/_posts/2024-03-22-6.2.8-releas.md
+++ b/content/posts/2024-03-22-6.2.8-release.md
@@ -2,11 +2,12 @@
layout: post
title: "RESTEasy 6.2.8.Final Release"
subtitle: ""
-date: March 22, 2024 11:11:11 PDT
+date: 2024-03-22 11:11:11
author: James R. Perkins
+aliases: [/2024/03/22/6.2.8-releas/]
---
-Today we'd like to announce the release of RESTEasy [6.2.8.Final]({{ site.baseurl }}/downloads#628final). This release
+Today we'd like to announce the release of RESTEasy [6.2.8.Final](/downloads#628final). This release
contains some bug fixes as well as some notable changes in behavior.
## Client Changes
@@ -29,7 +30,7 @@ are only allowed to be invoked once. We've added the requirement of that
restriction to RESTEasy. See [RESTEASY-3468](https://issues.redhat.com/browse/RESTEASY-3468) for details.
Previously when using an `EntityPart` as a `@FormParam` it was required to register the `jakarta.ws.rs.core.Application`
-as a servlet with a `multipart-config`. This was not user-friendly and not well document. In [RESTEASY-363](https://issues.redhat.com/browse/RESTEASY-3463)
+as a servlet with a `multipart-config`. This was not user-friendly and not well-documented. In [RESTEASY-363](https://issues.redhat.com/browse/RESTEASY-3463)
we solved this and now `@FormParam`'s can use the entity parts without the need to define a `multipart-config` on the
servlet.
diff --git a/_posts/2024-05-21-releases.md b/content/posts/2024-05-21-releases.md
similarity index 98%
rename from _posts/2024-05-21-releases.md
rename to content/posts/2024-05-21-releases.md
index 0a83877..54fc713 100644
--- a/_posts/2024-05-21-releases.md
+++ b/content/posts/2024-05-21-releases.md
@@ -2,12 +2,12 @@
layout: post
title: "RESTEasy 6.2.9.Final and 7.0.0.Alpha2 Releases"
subtitle: ""
-date: May 21, 2024 11:11:11 PDT
+date: 2024-05-21 11:11:11
author: James R. Perkins
---
-Today we'd like to announce the release of RESTEasy [6.2.9.Final]({{ site.baseurl }}/downloads#629final) and RESTEasy
-[7.0.0.Alpha2]({{ site.baseurl }}/downloads#700alpha2).
+Today we'd like to announce the release of RESTEasy [6.2.9.Final](/downloads#629final) and RESTEasy
+[7.0.0.Alpha2](/downloads#700alpha2).
## Introduction of Channels
diff --git a/_posts/2024-08-19-releases.md b/content/posts/2024-08-19-releases.md
similarity index 94%
rename from _posts/2024-08-19-releases.md
rename to content/posts/2024-08-19-releases.md
index 9e5adb6..2d5d7d9 100644
--- a/_posts/2024-08-19-releases.md
+++ b/content/posts/2024-08-19-releases.md
@@ -2,12 +2,12 @@
layout: post
title: "RESTEasy 6.2.10.Final and 7.0.0.Alpha3 Releases"
subtitle: ""
-date: Aug 19, 2024 11:11:11 PDT
+date: 2024-08-19 11:11:11
author: James R. Perkins
---
-Today we'd like to announce the release of RESTEasy [6.2.10.Final]({{ site.baseurl }}/downloads#6210final) and RESTEasy
-[7.0.0.Alpha3]({{ site.baseurl }}/downloads#700alpha3).
+Today we'd like to announce the release of RESTEasy [6.2.10.Final](/downloads#6210final) and RESTEasy
+[7.0.0.Alpha3](/downloads#700alpha3).
Both the 7.0.0.Alpha3 and 6.2.10.Final releases are bug fix and component upgrade releases.
diff --git a/_posts/2024-11-11-releases.md b/content/posts/2024-11-11-releases.md
similarity index 96%
rename from _posts/2024-11-11-releases.md
rename to content/posts/2024-11-11-releases.md
index 71982b8..b24a99a 100644
--- a/_posts/2024-11-11-releases.md
+++ b/content/posts/2024-11-11-releases.md
@@ -2,12 +2,12 @@
layout: post
title: "RESTEasy 6.2.11.Final and 7.0.0.Alpha4 Releases"
subtitle: ""
-date: Nov 11, 2024 11:11:11 PDT
+date: 2024-11-11 11:11:11
author: James R. Perkins
---
-Today we'd like to announce the release of RESTEasy [6.2.11.Final]({{ site.baseurl }}/downloads#6211final) and RESTEasy
-[7.0.0.Alpha4]({{ site.baseurl }}/downloads#700alpha4).
+Today we'd like to announce the release of RESTEasy [6.2.11.Final](/downloads#6211final) and RESTEasy
+[7.0.0.Alpha4](/downloads#700alpha4).
Both the 7.0.0.Alpha4 and 6.2.11.Final releases have two bug fixes, some component upgrades and two new enhancements.
diff --git a/_posts/2024-11-15-resteasy-spring-boot-with-springdoc.md b/content/posts/2024-11-15-resteasy-spring-boot-with-springdoc.md
similarity index 99%
rename from _posts/2024-11-15-resteasy-spring-boot-with-springdoc.md
rename to content/posts/2024-11-15-resteasy-spring-boot-with-springdoc.md
index a626d65..707b8af 100644
--- a/_posts/2024-11-15-resteasy-spring-boot-with-springdoc.md
+++ b/content/posts/2024-11-15-resteasy-spring-boot-with-springdoc.md
@@ -54,5 +54,3 @@ Above are what I have learned during the working process of this task, and you c
[^openapi_spec]: [OAI/OpenAPI-Specification: The OpenAPI Specification Repository](https://github.com/OAI/OpenAPI-Specification)
[^swagger-maven-plugin]: [https://github.com/swagger-api/swagger-core/tree/master/modules/swagger-maven-plugin](https://github.com/swagger-api/swagger-core/tree/master/modules/swagger-maven-plugin)
[^spring-boot]: [spring-projects/spring-boot: Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.](https://github.com/spring-projects/spring-boot)
-
-
diff --git a/_posts/2025-02-14-resteasy-grpc-collections.md b/content/posts/2025-02-14-resteasy-grpc-collections.md
similarity index 100%
rename from _posts/2025-02-14-resteasy-grpc-collections.md
rename to content/posts/2025-02-14-resteasy-grpc-collections.md
diff --git a/_posts/2025-02-19-resteasy-to-foundation.md b/content/posts/2025-02-19-resteasy-to-foundation.md
similarity index 98%
rename from _posts/2025-02-19-resteasy-to-foundation.md
rename to content/posts/2025-02-19-resteasy-to-foundation.md
index adad8aa..3986d31 100644
--- a/_posts/2025-02-19-resteasy-to-foundation.md
+++ b/content/posts/2025-02-19-resteasy-to-foundation.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy in a Foundation"
subtitle: ""
-date: Feb 19, 2025 11:11:11 PDT
+date: 2025-02-19 11:11:11
author: James R. Perkins
---
diff --git a/_posts/2025-03-10-releases.md b/content/posts/2025-03-10-releases.md
similarity index 96%
rename from _posts/2025-03-10-releases.md
rename to content/posts/2025-03-10-releases.md
index 1983bdc..1907918 100644
--- a/_posts/2025-03-10-releases.md
+++ b/content/posts/2025-03-10-releases.md
@@ -2,12 +2,12 @@
layout: post
title: "RESTEasy 6.2.12.Final and 7.0.0.Beta1 Releases"
subtitle: ""
-date: Mar 10, 2025 11:11:11 PDT
+date: 2025-03-10 11:11:11
author: James R. Perkins
---
-Today we'd like to announce the release of RESTEasy [6.2.12.Final]({{ site.baseurl }}/downloads#6212final) and RESTEasy
-[7.0.0.Beta1]({{ site.baseurl }}/downloads#700beta1).
+Today we'd like to announce the release of RESTEasy [6.2.12.Final](/downloads#6212final) and RESTEasy
+[7.0.0.Beta1](/downloads#700beta1).
## 7.0.0.Beta1
diff --git a/_posts/2025-03-19-red-hat-ibm.md b/content/posts/2025-03-19-red-hat-ibm.md
similarity index 93%
rename from _posts/2025-03-19-red-hat-ibm.md
rename to content/posts/2025-03-19-red-hat-ibm.md
index 8c9981d..411f677 100644
--- a/_posts/2025-03-19-red-hat-ibm.md
+++ b/content/posts/2025-03-19-red-hat-ibm.md
@@ -2,7 +2,7 @@
layout: post
title: "RESTEasy and Red Hat's Middleware Strategy"
subtitle: ""
-date: Mar 19, 2025 11:11:11 PDT
+date: 2025-03-19 11:11:11
author: James R. Perkins
---
@@ -12,7 +12,7 @@ Red Hat announced a change in its middleware strategy last month and I wanted to
The Red Hat announcement can be found on the Red Hat blog:
-[Evolving our middleware strategy](https://www.redhat.com/en/blog/evolving-our-middleware-strategy){:target="_blank"}
+[Evolving our middleware strategy](https://www.redhat.com/en/blog/evolving-our-middleware-strategy)
Some key points there are:
@@ -30,4 +30,4 @@ I’d like to say I’m personally a little sad to leave Red Hat. It has been a
As always, feel free to reach out to us if you have further questions.
-James R. Perkins
\ No newline at end of file
+James R. Perkins
diff --git a/content/rss.xml b/content/rss.xml
new file mode 100644
index 0000000..3198722
--- /dev/null
+++ b/content/rss.xml
@@ -0,0 +1,5 @@
+---
+aliases: [feed.xml]
+---
+
+{#include fm/rss.html}
diff --git a/content/sitemap.xml b/content/sitemap.xml
new file mode 100644
index 0000000..69c6523
--- /dev/null
+++ b/content/sitemap.xml
@@ -0,0 +1 @@
+{#include fm/sitemap.xml}
diff --git a/_data/grpc/releases.yaml b/data/grpcreleases.yaml
similarity index 100%
rename from _data/grpc/releases.yaml
rename to data/grpcreleases.yaml
diff --git a/_data/releases.yaml b/data/releases.yaml
similarity index 100%
rename from _data/releases.yaml
rename to data/releases.yaml
diff --git a/docs.html b/docs.html
deleted file mode 100644
index 13e9ac6..0000000
--- a/docs.html
+++ /dev/null
@@ -1,63 +0,0 @@
----
-layout: default
-title: Documentation
-selflink: docs
-permalink: /docs/
----
-
RESTEasy Documentation (Latest)
-
-
-
- {% for release in site.data.releases %}
- {% if release.supported %}
- {% assign detail = release.detail[0] %}
-
The documentation below is a combination of DocBook and Javadoc. The docbook is a Maven
+ module in our source tree. If you download or check out our source code from GitHub, you
+ will find it under the 'docbook' directory. Javadocs are generated automatically from the
+ maven build.
+
In release 3.1.0.Final, most of the classes deprecated in the 3.0.x generation of releases are
+ deleted or moved to an optional module. For some guidance in upgrading, see Upgrading from RESTEasy
+ 2 to RESTEasy 3.