Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
8answers
30k 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?
6
votes
1answer
1k 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 ...
3
votes
1answer
130 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 ...
2
votes
2answers
102 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?
2
votes
2answers
368 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.
1
vote
1answer
43 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
29 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
3answers
266 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}"> ...
1
vote
2answers
969 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 ...
1
vote
2answers
320 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 ...
1
vote
1answer
311 views

Java Meta-Inf Services

What is the purpose of Meta-INF services in Java ?
1
vote
2answers
953 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
413 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
208 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
0answers
37 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. ...
0
votes
2answers
150 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 ...
0
votes
2answers
208 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 ...