Alex Saluk
Alex Saluk
If URL's getUserInfo() is not null it could be split and set as basic authentication parameters: ```java URL url = new URL(address); String userInfo = url.getUserInfo(); if (userInfo != null)...
For example ${mysql_db}: `CREATE TABLE users (id UInt64, name String, status UInt8) ENGINE = MySQL('${mysql_address}', '${mysql_db}', 'users', 'root', 'secret');` The variables are then taken from app_config files depending on the...
Add to HelloCommand a TreeMap field: ```java public class HelloCommand extends Command { private static AtomicInteger counter = new AtomicInteger(0); private String message; private Map data; public HelloCommand(String message) {...
Often simple comparison fails due to differences in line breaks on various systems and it's not that important for a test. Also sometimes we need to compare HTML/XML/JSON and white...
This test will not fail: ```java @Test public void puzzle() { a(0L).shouldNotBeEqual(0); a(0L).shouldBeEqual(0); } ```
Currently in controllers we always need to build a string even if it never be used. It may be useful to add methods accepting parametrized strings and parameters as in...
After upgrading to 0.2.6 I see the following warning in the log: `Failed to parse the given SQL. If you believe the SQL is valid, please feel free to open...