• 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

Precompile jsp with ANT in weblogic

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Help Please!


This was my ant with jspc. I nned the equivalent of this in appc. Got an invaild tag error on -compileall -webapp

<java failonerror="true" fork="true" classname="weblogic.appc">
<arg line="-compileAll -webapp ${project.home}/docRoot -d ${project.home}/bin -verbose -keepgenerated -g *.jsp"
/>
<classpath>
<pathelement location="...jar" />
</classpath>

Thank you!
 
Ranch Hand
Posts: 98
Oracle Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Refer the below link:

https://coderanch.com/t/66927/BEA-Weblogic/Precompile-JSPs-Ant

Hope that helps
 
Sassy Kalaa
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you, but NO, that will not help me. That's what I have now and trying to find out correct options to use

<java failonerror="true" fork="true" classname="weblogic.appc">

jspc will not work.
 
anandraj tadkal
Ranch Hand
Posts: 98
Oracle Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try this link

http://chaitpress.wordpress.com/2010/10/28/how-to-pre-complie-jsps-in-weblogic/


 
Sassy Kalaa
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Great, Thanks.
reply
    Bookmark Topic Watch Topic
  • New Topic