jar file built by ant jar task does not have all the dependant jars and throws exception while reading the appplicationContext,xml

jar file built by ant jar task does not have all the dependant jars and throws exception while reading the appplicationContext,xml

I have a spring class with main method. Inside the class am trying to read the values applicationContext.xml . My intention is to jar this main class along with its dependant jars,property files and applicationContext.xml .Hence i have my target as below

 <target name="testing" depends="init">
<property name="mech.dir" value="${target.dir}/MECHNSM" />
<property name="mech.classes.dir" value="${mech.dir}/classes" />
<delete dir="${mech.dir}" />
<mkdir dir="${mech.dir}" />
<mkdir dir="${mech.classes.dir}" />
<copy file="${tests.dir}/Mechanism.properties"      todir="${mech.classes.dir}" overwrite="true" />
<copy file="${tests.dir}/applicationContext.xml" todir="${mech.classes.dir}" overwrite="true" />
<javac destdir="${mech.classes.dir}" debug="true" classpath="/jars/dependency_jars/spring-context-support-3.1.1.RELEASE.jar" classpathref="project.class.path">
    <src path="${tests.dir}"/>
    <include name="com/test/Sample.java" />
</javac>
<jar destfile="${retymech.dir}/retryOrderPerformPost.jar" basedir="${retymech.classes.dir}">
    <manifest>
        <attribute name="Main-Class" value="com.test.Sample"/>
    </manifest>
    <!--<zipgroupfileset dir="${lib.dir}" includes="**/*.jar" />-->
    <zipfileset src="${lib.dir}/spring-web-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-core-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/log4j.jar" />
    <zipfileset src="${lib.dir}/commons-logging-1.1.1.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-asm-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-beans-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-context-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-core-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-expression-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-web-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-oxm-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/spring-test-3.1.1.RELEASE.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/httpmime-4.1.3.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/httpclient-cache-4.1.3.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/httpcore-4.1.4.jar" includes="**/*.class" excludes="META-INF/**/*" />
    <zipfileset src="${lib.dir}/httpclient-4.1.3.jar" includes="**/*.class" excludes="META-INF/**/*" />

    <fileset dir="${tests.dir}" includes="applicationContext.xml" />
</jar>
</target>

While executing the jar file using java -jar command it is throwing me the below exception

Exception in thread "main" org.springframework.beans.factory.parsing.BeanDefinit ionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http.springframework.org/schema/context]

Could you help me to solve this issue

View Answers









Related Tutorials/Questions & Answers:
jar file built by ant jar task does not have all the dependant jars and throws exception while reading the appplicationContext,xml
jar file built by ant jar task does not have all the dependant jars and throws exception while reading the appplicationContext,xml  I have a spring...;/target> While executing the jar file using java -jar command it is throwing
Reading a file from Jar JAVA
Reading a file from Jar JAVA  I have added one excel sheet into a jar file. can anybody tell me how i can read that file. actually when i am running code from eclipse i able to read it but when i am adding that jar file
Advertisements
Reading a file from Jar JAVA
Reading a file from Jar JAVA  I have added one excel sheet into a jar file. can anybody tell me how i can read that file. actually when i am running code from eclipse i able to read it but when i am adding that jar file
jar file not reading input from serial port
jar file not reading input from serial port  i used a coding... when i execute thru jar file. but when i execute thru netbeans, data is received... = CommPortIdentifier.getPortIdentifiers(); while (portList.hasMoreElements()) { portId
jar file not reading input from serial port
jar file not reading input from serial port  i used a coding... when i execute thru jar file. but when i execute thru netbeans, data is received... = CommPortIdentifier.getPortIdentifiers(); while (portList.hasMoreElements
jar file
jar file  how to create a jar file in java
jar file
jar file  steps to create jar file with example
jar file
jar file  jar file where it s used
JAR FILE
JAR FILE  WHAT IS JAR FILE,EXPLAIN IN DETAIL?   A JAR file... and applications. The Java Archive (JAR) file format enables to bundle multiple... link: Jar File Explanation
jar file
jar file  how to run a java file by making it a desktop icon i need complete procedur ..through cmd
Need to know struts1 all jar file names
Need to know struts1 all jar file names  Hi, My name is Neeraj, I want to know all the jar file names for struts1 and plz provide me the link to download these files. Thanks & Regards Neeraj
File path for jar file
File path for jar file  Hi Experts, I have created one eclipse project, its about Velocity Template. In that project I have given the hard-coded... jar file of that application, unfortunately it is giving the error that resource
How to create a jar file
(); System.out.println("Jar File is created successfully."); } catch (Exception ex...How to create a jar file  Hello!!!! I have a project which has...???   The given code creates a jar file using java. import java.io.*; import
problem while reading .csv file
problem while reading .csv file  I have a problem here..... i am reading a .csv extention file which has some value....but the problem is der is an amount column which contains , in between (eg) 3,899.00 which inturns creates
Jar file - Java Beginners
Jar file  Hello this is my second question and i hope atleast i will get answer i bulid a jar file of my project using netbeans but now problem is when i open that jar file in command prompt i got error exception in thread
Running Jar file in Windows
Running Jar file in Windows  Running Jar file in Windows
struts jar file problem
struts jar file problem  hi.. I'm using struts-core-1.3.9.jar. it works well if am using ma application with internet but it shows me an error while initializing ActionServlet when i disconnected to Internet The error stack trace
jar file with html
jar file with html  I have a jar file. On double click it shows an applet page. Please tell me how to connect that applet into html or jsp page
JAR File - Swing AWT
JAR File   Is there anybody to solve my problem of not executing the JAR file? I have asked the question previously but I haven't got any answer yet. Please help me
Extract Jar File
Extract Jar File  How to extract jar file?   Hi Please open the command Prompt and to the jar file and write the command jar -xvf JaraFileName.jar
jar file - Java Beginners
jar file  jar file When creating a jar file it requires a manifest... options in jar file. What is Jar File? JAR files are packaged in the zip format  What is Jar File?JAR files are packaged in the zip format making
org.apache.commons.collections15.Transformer jar file
org.apache.commons.collections15.Transformer jar file  Dear, Please can you provide me the link for the following jar file: import org.apache.commons.collections15.Transformer; tahnks too much
Creating an executable jar file
Creating an executable jar file  When I try to create jar.exe through CMD, the manifest file created doesn't contain Main-Class attribute, even though it is included in text file used during creation of jar file
java jar file - Java Beginners
(); System.out.println("Jar File is created successfully."); } catch (Exception ex...java jar file  How to create jar Executable File.Give me simple steps to create jar files  Hi Friend, Try the following code: import
requesting for a jar file - Development process
requesting for a jar file  Sir Please send me a jar file of this sir , i need this package jar file org.apache.poi.hssf.usermodel for Excel reading... After extracting, put the following jar files in the lib folder of your apache
Jar file creation - Swing AWT
Jar file creation  i have developed a swing application using Net... comunication application... i have these doubts using IDE when i built the application i gets a JAR file a lib file is also created in dist folder
Creating JAR File - Java Beginners
me, in letting me know, as to how to create JAR file from my JAVA source...(); } out.close(); fout.close(); System.out.println("Jar File... main(String[]args){ CreateJar jar=new CreateJar(); File folder = new File
Executing JAR file - Swing AWT
Executing JAR file  Hello Friends! I have successfully created the JAR file of my project with the Manifest File including my Main... Manifest.txt secl/*.class and my jar file is created. But there is a problem, when
What is a JAR file in Java
viewing contents with detail of a jar file extract all the files... What is a JAR file in Java       JAR file is the compressed file format. You can store many
Java Jar File - Java Beginners
Java Jar File  What is a Java JAR file ..and how can i open a .jar file in Java?  Just create a Jar file and Double click on it, it will automatically runs main method in that Jar : to create Project as JAR
Apache HSSF Jar file location
Apache HSSF Jar file location  where can i get jar files for apache hssf
Changing Executable Jar File Icon
Changing Executable Jar File Icon  I have created an executable jar file for my java program and the icon that appears is the java icon. I will like...;Hi, You may use JSmooth to create executable java file and also associate icon
jar File creation - Swing AWT
jar File creation  I am creating my swing applications. How can i... in java but we can create executable file in java through .jar file.. how can i convert my java file to jar file? Help me
How to use JAR file in Java
do not use JAR file, then they will have to download every single file one... anywhere and run on any platform. All operating system support Java. JAR file... to digitally sign the JAR file. Users who want to use the secured file can check
creating a jar file - JSP-Servlet
creating a jar file  Can you give me detail answer 1. i am having a servlet.class file in classes folder 2. web.xml file my questions are 1. where to place the html or jsp files 2. how to create a jar file and how can
Create JAR file - Java Beginners
. But do let me know, isn't there any other way of making a JAR File. Simply like... to make a JAR file and run it easily on any computer. For that purpose i want to make my .class files to get converted into .jar file. More knowledge
Creating JAR File - Java Beginners
to change the contents of my manifest file. I read somewhere regarding i have to add a line to my manifest file (i.e. Main-Class: mypackage.MyClass...Creating JAR File  Respected Sir, Thankyou very much for your
including jar file in maven pom.xml
including jar file in maven pom.xml   Hi, I want to include a jar file from the WEB-INF/lib folder. Please let's know how to to do this? Thanks.... Add the following code into your pom.xml file and the error will go away
down load jar file - JavaMail
down load jar file  i want to down load james2.1.3 file.where is location it got it.  Hi Friend, You can download James Server from the following link: http://james.apache.org/download.cgi Thanks
Java Execute Jar file
. If a .jar file does not have an executable command it will not run. .jar... operating system or platform. To execute a JAR file, one must have Java... step is to make the JAR file executable. All class files of the application
How to Unjar a Jar file in Java
to remember while extracting a jar file: Use "-C" parameter to extract the JAR...A JAR file is a collection of Java class files that contains images, methods, texts, etc into one file. All these class files are compressed and archived
find jar file name from multiple set of jar files
find jar file name from multiple set of jar files   I would like to find jar file name from multiple set of jar files where the given class nameââ?¬Â?com.rational.ft.util.debugââ?¬Â
conversion of war file into executable jar file
conversion of war file into executable jar file  how to convert war file into executable jar file
Issue in Converting .zip file to .jar file?
Issue in Converting .zip file to .jar file?  I have a folder called "printpdf.jar". I have changed the .jar to .zip and did some customizations. After which i had "zipped" it again and made as ".jar". Now the final file
how to convert a jar file into .exe file
how to convert a jar file into .exe file  hi, I want convert my jar file into executable file,urgently please help me
How to create a jar file with database connection
access & i want to create a jar file of it... I have tried with manifest file but its not working pls help me.....   The given code creates a jar...How to create a jar file with database connection  Hello Everyone
Java Jar File
for reading and writing the JAR (Java ARchive) file format, which is based... Java Jar File       In Java, JAR (Java ARchive) is a platform-independent file format that allows you
Creating a JAR file in Java
Creating a JAR file in Java       This section provides you to the creating a jar file.... This program has been used the jar command "jar cf jar-file-name directory
While creating a jar how to add MySQL database to project
While creating a jar how to add MySQL database to project  Hi, Please tell me how to attach MySQL database to the Java project while building a jar or their is any other process
How to create jar file with dependencies in Maven?
Creating Jar with all dependencies - How to create jar file with dependencies... to include all dependencies in one jar file along with compiled classes of your project. Such jar file is useful when you want to include all the dependencies

Ads