<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress.com" -->
<rss version="0.92">
<channel>
	<title>Techspace</title>
	<link>http://parasjain01.wordpress.com</link>
	<description>IT happens only in IT</description>
	<lastBuildDate>Mon, 26 Oct 2009 18:32:21 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Creating Acegi Users in a script</title>
		<description><![CDATA[We are using Acegi plugin for Authentication and Authorization in Grails. We had to create users in bulk using MySql script. We have to know the encrypted password for each user, corresponding to the clear text password to insert in the database. (Acegi encrypts the password before storing it in the database).
I came across this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=216&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/10/06/creating-acegi-users-using-a-script/</link>
			</item>
	<item>
		<title>Mule IDE for Galileo</title>
		<description><![CDATA[I was stuck this week while trying to install Mule IDE plugin for Eclipse Galileo. Then I came across this. Basically, you have to uncheck &#8220;Group items by category&#8221; before installing the plugin
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=213&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/10/02/mule-ide-for-galileo/</link>
			</item>
	<item>
		<title>Grails &#8211; Plugin file not found for plugin project</title>
		<description><![CDATA[If you have just renamed your Grails plugin project and getting this error &#8220;Plugin file not found for plugin project&#8221; and wondering &#8211; &#8220;What&#8217;s going on?&#8221;
Consider this. Grails is based on DRY principle. Convention over configuration. By convention, the plugin descripor file should end in the word &#8220;GrailsPlugin&#8221;
Most likely it would have happened that you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=210&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/09/10/grails-plugin-file-not-found-for-plugin-project/</link>
			</item>
	<item>
		<title>Grails Maven Integration</title>
		<description><![CDATA[Note: Information provided in this post may get outdated soon, because Grails, it&#8217;s plugin and dependencies gets updated very frequently.
Today I was trying to integrate my existing grails application with Maven. I had hard time with it. I referred to the following information

http://grails.org/Maven+Integration
http://forge.octo.com/maven/sites/mtg/grails-maven-plugin/examples/mavenize-a-grails-app.html

The pom generated by the plugin was of Grails 1.1 and I was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=202&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/09/10/grails-maven-integration/</link>
			</item>
	<item>
		<title>Grails &#8211; No such property: save for class</title>
		<description><![CDATA[I suddenly started getting this message in my grails app. I don&#8217;t know the root cause of the problem. But for me the cause of the problem was removal of some fields and renaming of certain fields in domain class. If you have rename and/or removed some fields then make sure you follow these steps

Stopped [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=199&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/09/08/grails-no-such-property-save-for-class/</link>
			</item>
	<item>
		<title>Hyphen in MySQL database</title>
		<description><![CDATA[If you have hyphen(-) in your mySQL database you can use back-ticks to escape while issuing commands
like
drop database `alfresco-dev`;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=197&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/08/26/hyphen-in-mysql-database/</link>
			</item>
	<item>
		<title>Null message in Grails</title>
		<description><![CDATA[I had a domain object 

class Project{
    String projectTitle
    Rso rso
}

Where Rso itself is another domain object.
Both projectTitle and rso could not be blank or null.
when I tried
project.projectTitle.blank message in messages.properties, it worked 
but
project.rso.null was not working.
I was trying project.rso.null because the default message was mapped as default.null.message.
Then someone [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=193&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/08/18/null-message-in-grails/</link>
			</item>
	<item>
		<title>Running grails at some specific port</title>
		<description><![CDATA[By default, jetty will run the application at port 8080, but if you want to run the application at some specific port, for example 8085 you should use

grails -Dserver.port=8085 run-app

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=188&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/07/07/running-grails-at-some-specific-port/</link>
			</item>
	<item>
		<title>Grails : No domain class found for name domain-class-name . Please try again and enter a valid domain class name</title>
		<description><![CDATA[Sometimes, even if you create domain objects in grails you get the error that No domain class found.
I am not sure why this happens because I am new to Grails and still learning. But the following steps work for me
i) Stop all the running grails app ctrl+C
ii) grails clean
iii) Now try grails generate-all domain-class-name
This generally [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=183&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/06/23/grails-no-domain-class-found-for-name-please-try-again-and-enter-a-valid-domain-class-name/</link>
			</item>
	<item>
		<title>Building Web Apps with Spring 3.0  &#8211; Meeting notes</title>
		<description><![CDATA[This presentation and notes are from the May 2009 Java User group meeting in Twin Cities. You can view the details and download the code from http://www.intertech.com/UserGroups/JUGPresentation.aspx?TopicID=135  It was an excellent presentation. Bob has discussed about new cool features in Spring 3 and how it simplifies the Spring MVC development. These presentation slides are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=parasjain01.wordpress.com&blog=1112800&post=174&subd=parasjain01&ref=&feed=1" />]]></description>
		<link>http://parasjain01.wordpress.com/2009/06/03/building-web-apps-with-spring-3-0-meeting-notes/</link>
			</item>
</channel>
</rss>
