0
votes
1answer
8 views
Websphere Application Server calls classes from axis jar
I am using JAX-WS to create stub. I have to deploy my EAR file on WAS 7.0.
By default, call to the class is made to the classes in in the axis jar org.apache.axis2.jar which is present in the plugins ...
0
votes
0answers
9 views
Info needed on gradle release plugin as how maven provides release plugin
Can any one let me know if there is any release plugin provided by gradle to do similar tasks performed as Maven release plugin do? I know we can load the maven tasks in gradle but do not want to do ...
1
vote
0answers
21 views
how to manually deploy a webservice on tomcat 7?
I've created a Project in which I've placed my dao package, jpa package, methods package and services package.
In the last package, i've placed Service.java, ServiceInterface.java and ...
0
votes
0answers
22 views
Dynamically display multiple images from database to jsp?
Hello fellow stack overflowers.
I am stuck on a certain portion of a project and am looking for some advice.
I have a photo gallery page in jsp that is set up to display all the listings of photo ...
1
vote
0answers
11 views
Jacoco, Maven & TestNG (0 test coverage)
I'm currently trying to run Jacoco using Maven and TestNG.
I haven't downloaded/installed anything.
I've tried adding the following to my parent POM (also tried adding to test package POM, but still ...
-1
votes
0answers
78 views
mvc flow control and multiple exception throws and re throws several times with nested exceptions
I have a spring and hibernate based mvc web application.
The service class may call many dao methods and many other service methods like itself.
Each method may throw multiple exceptions or ...
-2
votes
0answers
38 views
Which framework for interactive websites? [on hold]
I'm in the process to choose a framework for a pet-project. I will be some kind of stock trading game. Thus rough requirements will be:
displaying different charts based on large database data
...
2
votes
8answers
54 views
How to return Array Values as a output to a Method in Java
I am new to Java.I am working on my previous post link.
I want to return specific extension(like .txt) file names under directory.
For this,I wrote the following method with 2 arguments.
public ...
0
votes
1answer
45 views
Java Web Application:how to get the original path of selected file?
There are two fields in my jsp page: an <s:file> tag and an <s:textfield> tag.
I tried to display the local path of the selected file, in that text field.
But i can't find an exact ...
0
votes
1answer
65 views
Observer pattern suggestion
I have three modules where user inserts some data using application , it is basically a j2ee application where user just creates information there are three modules .At the end of insertion i have ...
0
votes
0answers
15 views
What is a Node and a Property in content repository?
I am reading about content repositories and I am currently reading the JCR specification and the documentation found on Apache JackRabbit. However, I still don't understand what exactly I am going to ...
0
votes
0answers
9 views
Jasper report with Hibernate, composite key
I'm creating a web based system which utilizes Hibernate framework. I've created the hibernate configuration & pojo classes with netbeans tools. It works perfectly but the issue occurs when I try ...
1
vote
2answers
46 views
Java @entity nested relationships
I have a parent entity that has child entities (A) who in turn have their own child entities (B).
@Entity
public class Parent {
@OneToMany
Set<ChildA> childrenA;
}
@Entity
public class ...
0
votes
1answer
17 views
Relationship among Application Server, Container, and Java EE new releases
I came accross two cases before;
at first case, I realized that I could not use Servlet 3.0 in Weblogic 10.3.x since Weblogic 10.3.x is Servlet 2.5 container
Using Servlet 3.0 with Weblogic 10.3
at ...
0
votes
2answers
55 views
How can I Monitor External files in Java
I have a .exe file, It takes .txt file as a Input and it returns .txt files as outputs.
I have 2 folders names are InputFiles and ExeFolder.
InputFiles folder have so many number of input files, ...