Tagged Questions
0
votes
1answer
91 views
Eclipse Tomcat integration: useBean class attribute [class] is invalid
I'm using Eclipse Juno (Java EE) and Tomcat 7.0. I've successfully connected Tomcat and Eclipse with this tutorial: http://www.mulesoft.com/tomcat-eclipse
JSTL and *.jsp files are working well within ...
1
vote
2answers
172 views
Good book to learn Java (focused on enterprise) on Eclipse [closed]
I'm a .net developer, and I have worked the last 8 years with Microsoft technologies... but in one month I will begin to work with Java on Eclipse. I don't know both well. I've been following the java ...
0
votes
0answers
99 views
BreanCreationException on creating a bean
How come I am getting these error?
SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
...
0
votes
0answers
32 views
Using persistent beans in weblogic
I have a bean defined in an application built for Tomcat which refers to a bean that is defined in another xml file. This xml file is referenced in web.xml. However, if I try run the same application ...
1
vote
1answer
3k views
Can't use <jsp:useBean>: “Bean cannot be resolved to a type”
I'm just playing around with JSP. I just wanted to test some <jsp:useBean> stuff, but I can't. Every time if I'm using <jsp:useBean>, I get an error. Even if I just have this, I get an ...
0
votes
2answers
6k views
JSP Page Won't Work: java.lang.ClassNotFoundException: org.apache.jsp and The value for the useBean class attribute is invalid
I am having an issue running a jsp file which uses a java class. The jsp file is called temp.jsp. I have put my jsp file in the ROOT folder on a tomcat server
The class is found in ...
1
vote
0answers
337 views
The value for the useBean class attribute ****** is invalid
I use Tomcat 6 and have jsp file and java file which is located on the server
]
These are all files which I upload on the server
WEBINF/classes/layar/Testing.java
WEBINF/index.jsp
...
1
vote
4answers
2k views
java bean with static setter function
I have a web application that executes on tomcat 6.
I have a MysqlDb class that uses a BasicDataSource from a spring JDBC.
so far I've used the following bean configuration in web.xml:
<bean ...
0
votes
1answer
4k views
configure BasicDataSource as bean in web.xml
I'm trying to configure org.apache.commons.dbcp.BasicDataSource as bean in web.xml under a tomcat project using tomcat 6. (it's red5 with tomcat, we can ignore that the main server is actually red5 ...
1
vote
4answers
2k views
org.apache.jasper.JasperException: Cannot find any information on property 'sName' in a bean of type 'AddUserBean'
I have a html page with a user registration form. I collect the data and action is :
<form name="register" action="../JSP/Register.jsp" method="post">
Then on the jsp page i have
...
10
votes
7answers
2k views
What is an Enterprise Java Bean really?
On the Tomcat FAQ it says: "Tomcat is not an EJB server. Tomcat is not a full J2EE server."
But if I:
use Spring to supply an application context
annotate my entities with JPA
annotations (and use ...
1
vote
1answer
3k views
How do I set JSP UseBean values from a servlet
I am writing a web application that uses a JSP usebean tag in the session scope as shown below
<jsp:useBean id="userSession" class="project.session.UserSession" scope="session" />
I have also ...
1
vote
3answers
3k views
Why are Managed Beans not loaded in Tomcat?
I created a JSF 2 web application with facelets. The libs for JSF where stored at tomcat/lib, to share it between several applications. I thought maybe it would be better to store the libs inside the ...
2
votes
2answers
397 views
How to use a single JavaBean in many pages accross a JSP frameset
I have a bean declared on a page that holds a frameset
<jsp:useBean id="pos" class="MyBeanscope="page">
<jsp:setProperty name="a" property="a"/>
</jsp:useBean>
[some initialisation ...
0
votes
3answers
66 views
Eclipse ignoring source when deploying webapp
I'm running eclipse with tomcat 5.5. For some unknown reason from one day to the other eclipse stoped compiling my beans and java files that are in the source folder.
If I go to the work directory, I ...
2
votes
5answers
3k views
Purpose of Serialization in webapplication
1.Where is the usage of serialization in a webapplication.
2.Is it necessary that a form bean is serializable.
3.In tomcat what is the usage of sessions.ser file..
0
votes
4answers
1k views
Best way to manually pull a spring bean?
How do I pull a spring bean manually? I have a rather large web application, and in a given service, a transient object requires access to a bean that is machine specific (database connection info.) ...
0
votes
2answers
861 views
Java bean with JNI?
I have added native method in java bean code.
Then i have copied .dll file in System32 folder.
while using javabean in JSP.
it gives an Error:
HTTP Status 500 -
type Exception report
message
...
1
vote
2answers
2k views
In a Tomcat cluster, how to share beans in an application?
This might sound like a dumb or a simple question, but I really have little to no experience with clustering of any kind and I'm just curious if and how a certain scenario is possible.
Let's say I've ...