Questions tagged [exploded]
39 questions
14
votes
1 answer
Exploded view algorithm for CAD
I'm making a program to view 3D CAD models and would like to build in automated exploded views. All the assemblies that will be viewed are axi-symmetric. Some may not be, but the majority are. I'd like to figure out an algorithm for automatically…

Davido
- 2,913
- 24
- 38
6
votes
1 answer
How to explode donut chart slices using R (ggplot2)
To the left is how my donut chart currently looks like and to the right how it should look like:
Is there any way to explode the donut chart using R ?
Here is my code:
ggplot(dat, aes(fill = goalGroups, ymax = ymax, ymin = ymin, xmax = 4.8, xmin =…

Tim
- 61
- 4
6
votes
1 answer
How to use a Git repository as an exploded war?
I am in the following situation...
I am used to being able to check out a Subversion server subproject into JBoss as an exploded war: in my case, I call a directory Blah.war, put it in C:\jboss-6.1.0.Final\server\default\deploy\Blah.war, and JBoss…

orbfish
- 7,381
- 14
- 58
- 75
5
votes
0 answers
Create an gradle configuration with a filetree (not an archive)
I have an ear format project with multiple war modules.
Using the standard EAR mechanisms for dependencies:
dependencies {
deploy project(path: "war1", configuration: "archives")
deploy project(path: "war2", configuration: "archives")
}
I can…

loosebazooka
- 2,363
- 1
- 21
- 32
4
votes
1 answer
Spark DataFrame exploding a map with the key as a member
I've found a map exploding example at databrick's blog:
// input
{
"a": {
"b": 1,
"c": 2
}
}
Python: events.select(explode("a").alias("x", "y"))
Scala: events.select(explode('a) as Seq("x", "y"))
SQL: select explode(a) as (x, y)…

dlamblin
- 43,965
- 20
- 101
- 140
3
votes
2 answers
On save, can I automatically build an exploded war with maven in eclipse?
I am working on few projects that use maven for dependency management and deployment. Is there a way for me to have eclipse keep an exploded war file (based on the deployment structure defined in the pom.xml) up to date with the changes I am making…

Nick Vikeras
- 763
- 2
- 6
- 10
3
votes
2 answers
Can I get an URLConnection for a file within a JAR within a non-exploded WAR?
I have some resource files that are in the classpath of my web application (inside a JAR, if that matters). I know I can access the contents of those resources by calling e.g. SomeClassLoader.getResourceAsStream( "/samples/myscript.txt" ). I have…

st.never
- 11,723
- 4
- 20
- 21
3
votes
3 answers
How to remove exploded war in JBoss without stopping the server?
I can delete everything except lib folder(JBoss says application is undeployed, but he wont release the jars).
I tied jboss-maven-plugin and hard-undeploy, however it says that file(doc says it also support dirs) is undeployed, however it does not…

IAdapter
- 62,595
- 73
- 179
- 242
3
votes
1 answer
Deploy "exploded" folder to Tomcat in Eclipse
I just installed Eclipse for Java EE developers, Created a New Project by checking out files through SVN from a repository.
I was able to successfully generate an "exploded" web app folder through an ANT build.
How do I deploy this exploded folder…

Van de Graff
- 5,043
- 13
- 39
- 41
3
votes
1 answer
Does Websphere explode WARs and/or JARs when they get deployed?
When we deploy WAR into tomcat it explode WAR, while deploying WAR in websphere dose it explode the WAR as well. because I have deployed WAR into websphere but it dose not exploded my WAR and if the WAR is not exploded the file resolver doe not…

Talha Bin Shakir
- 2,563
- 10
- 38
- 54
3
votes
0 answers
How do I build an exploded WAR in a multi-module Maven project and also include sibling JAR files in its WEB-INF/lib directory?
I’m using Maven 3.3.3 with the Maven WAR 2.6 plugin. I have a multi module project with both JAR and WAR projects within it. My WAR projects depend on my JAR projects, however, I do not want to package my WAR files, opting instead to keep them in…

Dave
- 15,639
- 133
- 442
- 830
3
votes
2 answers
would maven be a good fit for this scenario?
We currently have an ant based project and are contemplating moving to maven.
The project is java ee based, however it has a module structure where each module can contain multiple java ee projects. like this:
mod1-->subdir-->war-A
…

unmaskableinterrupt
- 388
- 1
- 3
- 14
3
votes
2 answers
If I package a web application with the maven goal war:exploded, why won't pom.xml and pom.properties be included?
I'm pretty new to Maven and I've noticed an interesting thing in the Maven WAR Plugin.
When I package my Java web application with war:war, a zipped war is created. This war contains also the files pom.xml and pom.properties in the META-INF…
user321068
2
votes
1 answer
Running antrun during war:exploded
For a Maven build I need to copy some files after the exploded directory has been made with the war plugin. Is it possible to run the antrun plugin during/after the war:exploded goal? If so how would I do this? I've tried:
…

samblake
- 1,517
- 3
- 16
- 33
2
votes
1 answer
JBoss 7 - Where does the war get exploded?
I would like to know which location inside JBoss 7 does the deployed 'WAR' file get exploded to? In JBoss 4.3 it would ge exploded somewhere within the 'tmp' folder but I am not able to find where it is getting exploded to in JBoss 7. Thanks

user1066568
- 717
- 3
- 15
- 32