Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
eschleb committed Jan 18, 2024
1 parent 418783a commit 558e9aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,10 @@ public class BlossomServletConfiguration {
}
```

* If needed, add the PowerNodeArgumentResolver in the `BlossomServletConfiguration` as follows:
* If needed, add the DelegatingPowerNodeArgumentResolver in the `BlossomServletConfiguration` as follows:
```java
@Override
protected void addArgumentResolvers(final List<HandlerMethodArgumentResolver> argumentResolvers) {
argumentResolvers.add(powerNodeArgumentResolver);
argumentResolvers.add(new BlossomHandlerMethodArgumentResolver());
argumentResolvers.add(delegatingPowerNodeArgumentResolverFactory.create(new BlossomHandlerMethodArgumentResolver()));
}
```

0 comments on commit 558e9aa

Please sign in to comment.