This post is about how to fix the error in Spring Data JPA – java.sql.SQLException: Can not issue data manipulation statements with executeQuery().
Continue reading Spring Data JPA query with data manipulation fix
This post is about how to fix the error in Spring Data JPA – java.sql.SQLException: Can not issue data manipulation statements with executeQuery().
Continue reading Spring Data JPA query with data manipulation fix
This post is about fixing “Fatal error during parsing” HTML5 by Thymeleaf with Spring Boot.
Continue reading Fix Thymeleaf HTML5 parsing in Spring Boot
After updating to Mac OS High Sierra, in the IntelliJ IDEA I got an error:
Can't start Git: /usr/bin/git
The path to Git executable is probably not valid.
Continue reading Fix Git after updating to macOS High Sierra
On MySQL 5.7, a client got an error:
Access denied for user 'root'@'localhost' (using password: NO)
This post is about solution how to fix error leaving empty root password.
Continue reading MySql 5.7 empty root password fix
After updating to macOS Sierra, there is no possibility to use Git, Subversion or any other source control tool due to uninstalled Xcode.
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Continue reading Mac OS X “xcrun: error: invalid active developer path” fix
After update to Android Studio 2.2 I received compile time issue:
Error:Error converting bytecode to dex:
Cause: Dex cannot parse version 52 byte code.
This is caused by library dependencies that have been compiled using Java 8 or above.
If you are using the 'java' gradle plugin in a library submodule add
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
to that submodule's build.gradle file.