totalprogus.blogspot.com
totalprogUS: Grails : database management in multiple environments
http://totalprogus.blogspot.com/2014/09/grails-database-management-in-multiple.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Tuesday, September 16, 2014. Grails : database management in multiple environments. With Grails, you can use a database for a specific environments.If you change environments, Grails will use the database you define. For example, you can define the following environments :. Mysql on production machine. Define your environments in DataSource.groovy. Publié par Damien Rieu. Subscribe to: Post Comments (Atom). 160;Problem On a Maven ...
totalprogus.blogspot.com
totalprogUS: Grails and GSON : Could not find artifact
http://totalprogus.blogspot.com/2014/12/grails-and-gson-could-not-find-artifact.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Sunday, December 14, 2014. Grails and GSON : Could not find artifact. I had the following problem by adding GSON at my project :. Resolve error obtaining dependencies: Could not find artifact com.google.code.gson:gson:zip:2.3.1 in grailsCentral (http:/ repo.grails.org/grails/plugins) (Use - stacktrace to see the full trace). Solution was simple.To solve this problem, put GSOn in dependencies section and not in plugin section :.
totalprogus.blogspot.com
totalprogUS: January 2015
http://totalprogus.blogspot.com/2015_01_01_archive.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Tuesday, January 13, 2015. Grails update successfully from 2.3.11 to 2.4.4. I successfully update Grails from 2.3.11 to 2.4.4 by following https:/ grails.org/2.4.4 Release Notes. And http:/ grails.org/doc/latest/guide/upgradingFrom23.html. It was not a simple update due to a substancial existing web site.I had error at startup and many things to do to make it works. So, here are some advices to help to complete this task :. 160;Pr...
totalprogus.blogspot.com
totalprogUS: August 2014
http://totalprogus.blogspot.com/2014_08_01_archive.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Sunday, August 31, 2014. Upgrading Grails 2.3.6. Today, I decided to upgrade my Grails web site. Now, I use Grails 2.3.6 and I decided to test severeal solution to upgrade my web site. One note about how I upgrade my Grails version.I used "Change Grails SDK" feature of Grails plugin in IntelliJ.It simple and you can go back easily! Grails 2.3.6 with JDK 1.8 05. I rode forum and it seems normal. Loading Grails 2.3.6. Script14094269...
totalprogus.blogspot.com
totalprogUS: Upgrade Grails 2.4.4 to 2.5.0
http://totalprogus.blogspot.com/2015/03/upgrade-grails-244-to-250.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Tuesday, March 31, 2015. Upgrade Grails 2.4.4 to 2.5.0. I successfully upgraded Grails 2.4.4 to 2.5.0 by following the Release Version text files ( https:/ github.com/grails/grails-core/releases/tag/v2.5.0. I only upgraded plugins version in BuildConfig.groovy. Build ':tomcat:7.0.55.2'. Compile ':cache:1.1.8'. Compile ':scaffolding:2.1.2'. Compile ':asset-pipeline:2.1.5'. Cf Release Version ). Here is the exception :. 160;Problem ...
totalprogus.blogspot.com
totalprogUS: April 2015
http://totalprogus.blogspot.com/2015_04_01_archive.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Friday, April 24, 2015. Grails and Pdf creation. In my businness application, I needed to print report in a pdf file.Before Grails 2.5.0, I used export-plugin with success.I tried to use with Grails 2.5.0 but I obtained compilation errors.That's why I looked for other solutions. Finaly, I decided to do it myself with apache pdfbox. In my BuildConfig.groovy, I added the dependency :. And here is the code in my controller :. With 2 ...
totalprogus.blogspot.com
totalprogUS: December 2014
http://totalprogus.blogspot.com/2014_12_01_archive.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Sunday, December 14, 2014. Grails and GSON : Could not find artifact. I had the following problem by adding GSON at my project :. Resolve error obtaining dependencies: Could not find artifact com.google.code.gson:gson:zip:2.3.1 in grailsCentral (http:/ repo.grails.org/grails/plugins) (Use - stacktrace to see the full trace). Solution was simple.To solve this problem, put GSOn in dependencies section and not in plugin section :.
totalprogus.blogspot.com
totalprogUS: May 2014
http://totalprogus.blogspot.com/2014_05_01_archive.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Friday, May 30, 2014. Deploy your Tomcat Grails website on OpenShift. Deploy your Grails web site on OpenShift. I use OpenShift cloud to deploy my web site made with Grails. This article will give you a summary of what you have to do if you want to deploy a web site on OpenShift cloud. It will also give some advice and feedback. Which way to deploy your Grails application on OpenShift? You can use Tomcat plugin. Gem install rhc su...
totalprogus.blogspot.com
totalprogUS: java.lang.LinkageError: loader constraint violation: when resolving method "org.slf4j.impl.StaticLoggerBinder.getLoggerFactory
http://totalprogus.blogspot.com/2011/06/javalanglinkageerror-loader-constraint.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Tuesday, June 21, 2011. Javalang.LinkageError: loader constraint violation: when resolving method "org.slf4j.impl.StaticLoggerBinder.getLoggerFactory. Lors du déploiement d'un war dans JBoss 6.0.0, j'ai l'erreur suivante :. Have different Class objects for the type org/slf4j/ILoggerFactory used in the signature. There is conflict between libraries in the war and in JBoss.To resolve this problem, you have to exclude. This blog is a...
totalprogus.blogspot.com
totalprogUS: September 2014
http://totalprogus.blogspot.com/2014_09_01_archive.html
Blog about JAVA and world of programmation : useful tips, news, tutorial . Tuesday, September 16, 2014. Grails : database management in multiple environments. With Grails, you can use a database for a specific environments.If you change environments, Grails will use the database you define. For example, you can define the following environments :. Mysql on production machine. Define your environments in DataSource.groovy. Publié par Damien Rieu. Subscribe to: Posts (Atom). I am a CRaSH contributor! 160;P...