Oleksandr Gavenko

Results 57 comments of Oleksandr Gavenko

Instead of having a dedicated command for searching in the "description" I think existing `search` command should be extended. `apt-cache search` and `dnf search` work in such way, see: #4193.

@kballard I reported bug: https://github.com/ggreer/the_silver_searcher/issues/1060 Adding leaning slash allows matches of path with asterisks... For your case it is `/p/main/*/migrations`

@puertajennifer `@JsonNaming` has nothing with POST form + `x-www-form-urlencoded`. Jackson is not used when you submit a form.

Related questions with workarounds: * https://stackoverflow.com/questions/34945172/binding-snake-case-request-parameters-to-a-spring-form * https://stackoverflow.com/questions/8986593/how-to-customize-parameter-names-when-binding-spring-mvc-command-objects I don't like `OncePerRequestFilter` which is global, not per mapping. Or custom `ExtendedServletRequestDataBinder` to accept new kind of annotation on form parameters...

@Nasil I'm not sure you have to create and configure `ObjectMapper` each time in the controller. This class was designed to be thread safe, from JavaDoc: > Mapper instances are...

As a workaround one can use Spring Gradle Dependency Management plugin: ``` plugins { id 'org.springframework.boot' version '2.7.0' } apply plugin: 'io.spring.dependency-management' repositories { mavenCentral() } dependencyManagement { imports {...

Actually I haven't thought about attaching to process, managed by Gradle. I think about launching "main" method with provided by Gradle classpath. That way it is possible to reuse profiler...

With: bash# git clone --depth 1 https://github.com/kelemen/netbeans-gradle-project.git bash# cd netbeans-gradle-project/netbeans-gradle-plugin bash# gradle build -x test -x check and updating plug-in with `netbeans-gradle-project/netbeans-gradle-plugin/build/nbm/org-netbeans-gradle-project.nbm` I still have errors: java.lang.IllegalArgumentException: file:/D:/home/.gradle/caches/modules-2/files-2.1/xmlpull/xmlpull/1.1.3.1/da39a3ee5e6b4b0d3255bfef95601890afd80709/xmlpull-1.1.3.1-sources.jar is not...

`build.gradle`: repositories { jcenter() } apply plugin: 'java' dependencies { compile 'org.springframework.boot:spring-boot-starter-batch:1.4.4.RELEASE' } Any `.java`: public String init() { return hello(); } public String hello() { return "hello"; } I...

I am on mobile Internet access package currently and it is difficult to get NB 8.1, sorry... Product Version: NetBeans IDE 8.2 (Build 201609300101) and NB says that there are...