[jboss-user] [JBoss Seam] - Re: Lazy mans guide to developing SEAM!

seamNoobie do-not-reply at jboss.com
Wed Jan 10 21:23:52 EST 2007


Update

Don't have a . (dot) in your MyEclipse projects:
xxxx.ear
xxxx.jar
xxxx.war 

should be
xxxx
xxxx_jar
xxxx_war

and then you can deploy a .ear file directly to your server from MyEclipse (thanks MyEclipse guys).

making your xxx
                     META-INF
                        application.xml

  | <application>
  | 	<display-name>xxxx</display-name>
  | 
  | 	<module>
  | 		<web>
  | 			<web-uri>xxxx_war.war</web-uri>
  | 			<context-root>/xxxx</context-root>
  | 		</web>
  | 	</module>
  | 	<module>
  | 		<ejb>xxxx_jar.jar</ejb>
  | 	</module>
  | 	<module>
  | 	    <java>jboss-seam.jar</java>
  | 	</module>
  | 	<module>
  | 	    <java>icefaces.jar</java>
  | 	</module>
  | 	<module>
  | 	    <java>icefaces-comps.jar</java>
  | 	</module>
  | </application>
  | 

Also, allegedly, filtered deployment is COMING SOON to MyEclipse (so you don't deploy your test .jars to your archive!)

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4000226#4000226

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4000226



More information about the jboss-user mailing list