Merkzettel für die eigenen Computer/das private Netz
Upgrade Ubuntu auf 11.10
Link abrufen
Facebook
X
Pinterest
E-Mail
Andere Apps
Upgrade Thinkpad auf Ubuntu 11.10 für meine Frau. Der neue Desktop wäre nichts für mich - aber von Ihr habe ich keine Beschwerden gehört. Web, Drucken, Scannen, XMPP .. mehr brauchts nicht.
Warning: at the moment not recommended as solution. Personal Note (too complicated to keep in my brain / transient memory) birt simply does not think in this way: push data into report vs pull datasource, osgi vs. maven, design time jars.... Step 1: use with gradle: get dependencies from maven repo: compile ( group : 'org.eclipse.birt.runtime' , name : 'org.eclipse.birt.runtime' , version : '4.4.1' ) { exclude module : 'flute' exclude module : 'org.eclipse.orbit.mongodb' } // also working 4.2.1a // not compiling: 4.6.0-20160607 // not running: 4.5.0a Step 2: create POJO and a suitable BIRT DataSource for the Designer: http://yaragalla.blogspot.de/2013/10/using-pojo-datasource-in-birt-43.html DataSource really needs the open, next and close Methods build as jar, needed as such in BIRT Designer Step 3: use BIRT runtime in your Spring Boot Controller: InputStream reportDesign = getClass(). ...
Swagger ist a possible language independent solution to describe your REST based services. I use it currently together with spring-boot to provide my mobile json api. To generate docs and client stubs with gradle I resort to: task genSwagger (type: JavaExec ) { description "generate swagger doc or clients via codgen package and gradle" // needing buildscript dependency classpath "com.wordnik:swagger-codegen:2.1.2-M1" classpath = buildscript.configurations.classpath args = ["-i", "http://localhost:8080/........-rest-api", "-o", "${buildDir}/docs/rest-api", "-l", "android"] main = "com.wordnik.swagger.codegen.Codegen" } run with "gradlew genSwagger" As of today to my knowledge no stable gradle plugin exists for codegen (maven only), so starting it's Main class from gradle is my solution for now. see also: http://swagger.io/ https://github.com/sp...