• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JBOSS

 
Ranch Hand
Posts: 174
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can anyone tell me as to how ANT can be used for creating JAR files, so that I can deploy them ? Where can I find some good examples related to JBOSS (other than www.jboss.org) ?
 
Ranch Hand
Posts: 208
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
You can use
<jar jarfile="${local.jar.file}" basedir="${project.classes.dir}" />
to create a jar file, ofcourse ${} specifies the variable you have specified. For more you can look into ANT documentation.
If you are looking for JBOSS deployment and configuration docs, then jboss.org is the best site.
 
Ranch Hand
Posts: 173
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here's a chunk from a project that I'm working on:

Make sure you understand variables in ant, otherwise, it might confuse you.
HTH,
/rick
[ May 14, 2002: Message edited by: Rick Salsa ]
 
Arijit Ghosh
Ranch Hand
Posts: 174
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Rick.. Yes I want to understand each and every variable in ANT specially in context to deployment descriptor for EJB (JBOSS related).
Can you suggest something ?
 
Ranch Hand
Posts: 2378
MySQL Database Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How good is JBoss as a J2EE server and EJB server? I am finding a good one and so need some alternative suggesions other than JBoss also...
 
Ranch Hand
Posts: 320
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ashik uzzaman:
How good is JBoss as a J2EE server and EJB server? I am finding a good one and so need some alternative suggesions other than JBoss also...


What is your criteria for the search. What would be a 'good' server? Cheap, load balanced, best security etc?
Alternatives (no particular order):
- BEA Weblogic
- IBM Websphere
- Orion
- Oracle IAS
- Sybase
- Silverstream
- Resin EJB
 
Arijit Ghosh
Ranch Hand
Posts: 174
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi John,
Are any one of these alternatives free and of open source code standard ?
 
Ranch Hand
Posts: 1934
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How about the J2EE server Pramati. They got very good reviews.
Kishore.
 
reply
    Bookmark Topic Watch Topic
  • New Topic