The META-INF directory related to .jar file contain the manifest (list of contents) of a jar and is created when you write a jar file.

learn more… | top users | synonyms

0
votes
0answers
114 views

no default META-INF folder in Netbeans project — where to add files to?

How do I get Netbeans to add javamail.providers into the META-INF folder (which I manually added) without getting into the weeds in the ant build file? It's kinda odd, because manifest.mf ends up in ...
3
votes
3answers
203 views

Ant Contrib If for optional JAR META-INF

I have a scenario where I'm trying to reuse the same build.xml file across multiple projects. In each case, the finaly target is a dist that JARs everything up. The only difference is that some of the ...
1
vote
0answers
161 views

Google App Engine WEB-INF and META-INF

When you create a new Web Application Project using the Google-Eclipse plugin, it creates an entire project directory structure for you, including: src/ META-INF/ jdoconfig.xml ...
2
votes
1answer
784 views

Modifying system apps: original AndroidManifest.xml required, but why?

The basic steps for editing a system APK: Make a backup of the APK. Decompile working APK. Makes changes. Recompile working APK. Copy/paste both the META-INF folder and AndroidManifest.xml from the ...
0
votes
0answers
159 views

How to update META-INF\application.xml in Ant script with information about new .war module

Sorry for the newbie question, I'm quite new in Java world. We have 2 components - A and B. Component A is built by Ant scripts (build.xml) and the result is A.ear file. It contains several .war ...
0
votes
1answer
105 views

Maven: Need to copy images into Javadoc, LICENSE/NOTICE files into META-INF

I've been trying to accomplish two things that I figured would be pretty trivial with Maven (I'm using 3.0.3 and the latest versions of all the plugins), but no matter what I do I can't seem to make ...
0
votes
1answer
187 views

How to use java.util.zip for epub

I have to edit the html files of epubs programmatically so what I did was to unzip the .epub and create a parser to make the necessary edits for the html files. However, when I convert them back into ...
0
votes
1answer
104 views

context.xml in Tomcat without DB password

I have a servlet application running on Tomcat 7 and wish to connect to MySQL locally. My local MySQL user does not have a password, and I wish to keep it that way for convenience. However, if I do ...
1
vote
1answer
180 views

Two Meta-Inf folders - normal structure?

I just "discovered" that we have two Meta-Inf folders ... In eclipse and also in the War file. The First one is (in the war): /META-INF/ The Second, and weird one ist: /WEB-INF/classes/META-INF/ ...
3
votes
1answer
163 views

Maven concat/merge META-INF/service/file of two dependencies using maven?

G'day! I have two dependencies in my project that are overwriting each others config-files within META-INF/services/xxx. Is there some procedure to merge/concat these two configs files instead of ...
-1
votes
2answers
266 views

Where is meta-inf directory? [closed]

I'm working with JPA and Hibernate. Where is meta-inf directory in Netbeans 7.x? For some reazon it seems to not be present.
0
votes
2answers
160 views

Howto: Locate a Resource file within a JAR file without knowing the name and location upfront

General problem: finding/locating a resource file (document.xml) within a JAR file that has no fixed position where it can be found and even the name of the file is unknown upfront. Situation: two ...
0
votes
1answer
2k views

Error : The markup in the document following the root element must be well-formed

The following is my context.xml file in the META-INF directory of my project : <?xml version="1.0" encoding="UTF-8"?> <Context antiJARLocking="true" path="/poll"/> <Resource ...
1
vote
0answers
72 views

place tld file META-INF folder in the jar in m2e project

I have to place a custom tld file in the META-INF folder in the jar for a project developed using m2eclipse plugin. Can anyone help me?
1
vote
1answer
234 views

Deploying META-INF directory of a project listed in a Deployment Assembly

I have a project that has some data in the META-INF folder that it needs for proper functioning. Specifically, it has a services sub-directory, with a service file in it. When I add that project to ...
2
votes
2answers
186 views

What are files located in *.jar/META-INF/*.*?

I found that c.tld file of jstl-1.2.jar is located in META-INF/*.* inside this jar. How to access these files from code in this jar? Just with getResourceAsStream("/META-INF/c.tld")? Or META-INF has ...
1
vote
1answer
656 views

How do I package a web fragment in a jar with Netbeans and Maven

When selecting a new maven project from the Netbeans New Project Menu, there is the option to create a Web Application, or a Standalone Application. I'd like to create a Class Library for use with a ...
1
vote
1answer
238 views

how to read manifest.mf in an j2me application

I'm developing a j2me application using Netbeans IDE and LWUIT library. I need to read some attributes of MANIFEST.MF that are included in jar file. What all I found in net, either have conflict with ...
1
vote
0answers
112 views

Tomcat not loading services

Does anyone know if the META-INF/services folder gets loaded by Tomcat at all?? I have a war file that defines a few services, all of which run just fine under JBoss but Tomcat seems to ignore them. ...
1
vote
3answers
2k views

Ant Build Jar without META-INF

How to build jar using ant without META-INF folder? I have not specified any manifest attribute in: <jar destfile="${build}/${jar}/${client}.jar" basedir="${build}/${classes}/${main}"> ...
0
votes
2answers
761 views

maven assembly plugin - correct use of the exclude term

short: I need to filter all java Files and every META-INF Folder from a set of jars and package the class files and resources into one single jar. I currently use the maven assembly plugin, but am ...
3
votes
2answers
6k views

creating META-INF/services folder in Eclipse

I am trying to create an extensible app in Java and chose to use SPI. According to this tutorial I am following, I am supposed to create a specific file in META-INF/services in my jar, but don't know ...
4
votes
1answer
267 views

Which context.xml is used First

On my Tomcat 6.0.x I have a context.xml file in the conf directory and I also have a context.xml in the META-INF directory of a project deployed from netbeans6.9.1. The context.xml contains the ...
7
votes
3answers
972 views

Using serviceloader on android

I am very new to java and android development and to learn I am trying to start with an application to gather statistics and information like munin does. I am trying to be able to load "plugins" in my ...
14
votes
1answer
4k views

Idea to avoid that spring.handlers/spring.schemas get overwritten when merging multiple spring dependencies in a single jar

I got the error Unable to locate NamespaceHandler when using context:annotation-config running (java -jar) a jar assembled by the maven-assembly-plugin and containing my project and all its ...
2
votes
2answers
210 views

Can META-INF be used in an exploded classes folder (e.g. not within a JAR)?

I would like to overide the META-INF/services there, will it work without a jar?
3
votes
2answers
711 views

How to add META-INF/context.xml in Warbler

How can I add META-INF/context.xml into the war? I didn't find any config entry in config/warble.rb.
2
votes
1answer
1k views

Java Meta-Inf Services

What is the purpose of Meta-INF services in Java ?
2
votes
2answers
4k views

Add .mf & .xml files in META-INF directory inside a Maven built EAR

I have arbitrary .xml & .mf files that i have to add in the META-INF folder inside the ear itself. Build is done using maven2.2.1. Simply adding those files under ...
1
vote
1answer
569 views

JRockit vs HotSpot classloading issue - META-INF/services

According to the javadoc of javax.xml.validation.SchemaFactory#newInstance, I can specify which implementation of SchemaFactory I want, by placing a file in META-INF/services called ...
1
vote
1answer
472 views

Java Applet requests /META-INF/services/javax.xml.transform.TransformerFactory

I have a signed java applet that runs on a web page and every time it loads, it requests the following files on the host: GET /META-INF/services/javax.xml.transform.TransformerFactory GET ...
0
votes
2answers
429 views

Web Services in Unix. What should be the directory structure

I earlier got to create a simple RESTful webservice on my localhost using Eclipse IDE, Tomcat, and JAX-RS libraries. I am now trying to move the same on to a different unix server which has Tomcat ...
65
votes
8answers
67k views

What's the purpose of META-INF?

In Java, you often see a META-INF folder containing some meta files. What is the purpose of this folder and what can I put there?