I have just released the version 0.2 of jolokiaui (https://github.com/virtualramblas/jolokiaui), a web client for the Jolokia JVM agent (https://jolokia.org/agent/jvm.html) to monitor local and remote JVMs. It is implemented in R (https://www.r-project.org/) using the Shiny framework (http://shiny.rstudio.com/). The current release is still an alpha, but new features would be added in the next months. Any feedback is welcome. Enjoy it.
jOOQ allows code generation from a database schema through ANT tasks, Maven and shell command tools. But if you're working with Eclipse it's easier to create a new Run Configuration to perform this operation. First of all you have to write the usual XML configuration file for the code generation starting from the database: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <configuration xmlns="http://www.jooq.org/xsd/jooq-codegen-2.0.4.xsd"> <jdbc> <driver>oracle.jdbc.driver.OracleDriver</driver> <url>jdbc:oracle:thin:@dbhost:1700:DBSID</url> <user>DB_FTRS</user> <password>password</password> </jdbc> <generator> <name>org.jooq.util.DefaultGenerator</name> <database> <name>org.jooq.util.oracle.OracleDatabase</name> ...
Comments
Post a Comment