pondělí 12. září 2016

Run Groovy Project Without Compilation Using Gradle

Run Groovy Project Without Compilation Using Gradle

To be honest it is automatically compiled by Gradle. All changes made into "buildSrc/src/main/groovy" are automatically compiled during startup.

Key feature of Gradle is how nicely it manages "buildSrc" directory.

Here is sample project https://bitbucket.org/bugs_/samples/src/default/RunGroovyProjectWithoutCompilationUsingGradle/

sobota 30. července 2016

čtvrtek 28. července 2016

Count number bytes in UTF-8 for Java String

https://bitbucket.org/bugs_/utils/src/default/CoreUtils/src/main/java/cz/vondr/coreutils/utf/Utf8LengthUtil.java

  • Problem 1: You have Java String variable. And you need get number of bytes in UTF-8
  • Problem 2: You need split String into multiple Strings, in the way that each of them have exact number of bytes. (expect last part of course :) )

Thanks to stackoverflow.com

úterý 15. března 2016

MXBeans ovládání z command line

MX Beany jsem vždy ovládal pomoci JConsole. To ale nejde bez grafického prostředí

Tady je jeden ze způsobů, jak něco spustit z command line
http://wiki.cyclopsgroup.org/jmxterm/download.html

stáhnout jmxterm-1.0-alpha-4-uber.jar

java.exe -jar jmxterm-1.0-alpha-4-uber.jar    (potřebuje to JDK ne jen JRE)

prikaz "jvms"
  (vylistuje jvm procesy)

prikaz "open "
  (se pripoji k procesu)

prikaz "run -d MyApp -b MyApp:name=MyBean nameOfMethod"
  (se spustí danou metodu na dane beane)