Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 5d7370d

Browse files
committed
Post ready to be published 🚀
1 parent 0b57949 commit 5d7370d

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

graphql-types.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,8 @@ export type DirectoryCtimeArgs = {
247247
export type Site = Node & {
248248
buildTime?: Maybe<Scalars['Date']>;
249249
siteMetadata?: Maybe<SiteSiteMetadata>;
250+
port?: Maybe<Scalars['Int']>;
251+
host?: Maybe<Scalars['String']>;
250252
polyfill?: Maybe<Scalars['Boolean']>;
251253
pathPrefix?: Maybe<Scalars['String']>;
252254
jsxRuntime?: Maybe<Scalars['String']>;
@@ -846,6 +848,8 @@ export type QueryAllDirectoryArgs = {
846848
export type QuerySiteArgs = {
847849
buildTime?: InputMaybe<DateQueryOperatorInput>;
848850
siteMetadata?: InputMaybe<SiteSiteMetadataFilterInput>;
851+
port?: InputMaybe<IntQueryOperatorInput>;
852+
host?: InputMaybe<StringQueryOperatorInput>;
849853
polyfill?: InputMaybe<BooleanQueryOperatorInput>;
850854
pathPrefix?: InputMaybe<StringQueryOperatorInput>;
851855
jsxRuntime?: InputMaybe<StringQueryOperatorInput>;
@@ -2158,6 +2162,8 @@ export type SiteFieldsEnum =
21582162
| 'siteMetadata___contacts___links___medium'
21592163
| 'siteMetadata___contacts___links___devto'
21602164
| 'siteMetadata___contacts___links___instagram'
2165+
| 'port'
2166+
| 'host'
21612167
| 'polyfill'
21622168
| 'pathPrefix'
21632169
| 'jsxRuntime'
@@ -2293,6 +2299,8 @@ export type SiteGroupConnectionGroupArgs = {
22932299
export type SiteFilterInput = {
22942300
buildTime?: InputMaybe<DateQueryOperatorInput>;
22952301
siteMetadata?: InputMaybe<SiteSiteMetadataFilterInput>;
2302+
port?: InputMaybe<IntQueryOperatorInput>;
2303+
host?: InputMaybe<StringQueryOperatorInput>;
22962304
polyfill?: InputMaybe<BooleanQueryOperatorInput>;
22972305
pathPrefix?: InputMaybe<StringQueryOperatorInput>;
22982306
jsxRuntime?: InputMaybe<StringQueryOperatorInput>;
43.3 KB
Loading
144 KB
Loading

src/logic/blog-authors.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,9 @@ export const blogAuthors: { [authorName: string]: BlogAuthor } = {
6060
url: "https://www.linkedin.com/in/stefanovaresi/",
6161
image: "stefano-varesi.jpg",
6262
},
63+
alex_stabile: {
64+
name: "Alex Stabile",
65+
url: "https://www.linkedin.com/in/alex-stabile-a9316b94/",
66+
image: "alex-stabile.jpg",
67+
},
6368
};

src/posts/2022-03-02-custom-jackson-module-deserlializer-serializer-object-mapper-java-spi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
title: "A custom module for Jackson object mapper using Java Service Provider"
3-
description: "Sometimes you have custom Jackson object mapper imported from external modules/libraries? How can you
3+
description: "Sometimes you have custom Jackson object mapper imported from external modules/libraries. How can you
44
customize their serialization/deserialization? Let's go to discover the power of Java Service Provider Interface."
55
date: 2022-03-18
6-
image: ../images/posts/XXX.jpg
6+
image: ../images/posts/fasterxml-logo.jpg
77
tags: [java, kotlin, web development]
88
comments: true
99
math: false
1010
authors: [fabrizio_duroni, alex_stabile]
1111
---
1212

13-
*Sometimes you have custom Jackson object mapper imported from external modules/libraries? How can you
13+
*Sometimes you have custom Jackson object mapper imported from external modules/libraries. How can you
1414
customize their serialization/deserialization? Let's go to discover the power of Java Service Provider Interface.*
1515

1616
---

0 commit comments

Comments
 (0)