membersound
membersound
I'd love to see `PropertyPlaceholder` working within `messages.properties`. So that I can make cross references within the messages: /src/main/resources/messages.properties: ``` person.label=Name address.label=${person.label} ``` Layout: `` Output: ``` Name ${person.label} ```...
https://jsfiddle.net/72rn3xu6/4/ If you use `format: "dd.mm.yy"`, and input manually eg "24.12.22", then the date of the datepicker is not highlighted. If you then leave the input (so calendar ui hides),...
I'm trying to execute a `findAll()` paged query with a `Slice` to avoid execution of the `count` query for each page (large database): ``` public interface MyRepository extends JpaRepository, QuerydslPredicateExecutor...
`spring-boot-2.6.3` I'm migrating my `MockMvc` tests to `WebTestClient`, for having all my tests using the same underlying API. The following example project shows that authenticating on the `/login` page works...
I'd like to apply some manual changes to `data\temp\apk-icon-editor\apk\res\values\strings.xml`. I'm trying as follows: > open apk with the tool > change strings.xml and safe > create apk with the tool....
I'd like to strip the reactive `DefaultErrorAttributes` to only expose `timestamp` and `message` fields in the json response: ``` @Component public class ReactiveHidingDefaultErrorAttributes extends org.springframework.boot.web.reactive.error.DefaultErrorAttributes { @Override public Map getErrorAttributes(ServerRequest...
`spring-boot-2.6.6` I want my `@Async` tasks to delay a shutdown. `application.properties`: ``` server.shutdown=graceful server.shutdown.grace-period=30s spring.task.execution.shutdown.await-termination=true ``` ``` @SpringBootApplication @EnableAsync public class AppConfiguration { public static void main(String[] args) { SpringApplication.run(AppConfiguration.class,...
I have a `@GetMapping` `@RestController` that could produce both xml and json. If `Content-Type` is missing in the clients' request, by default `json` should be returned. I therefor tried to...
`BeanPropertyRowMapper` requires setters being present. Which is fine if you have some. But if you only have a simple dto class for some reason, and want to make use of...
Why are there no default settings for `spring.mvc.format.*` properties? I mean: spring is *convention over configuration*, but when I send a `POST` request and want spring to parse values like...