I'm creating a garbage collection service, you know the kind of thing I'm sure:
@Entity
| @EntityListeners({GarbageCollectorService.class})
| public class MyEntity {
|
| }
@Service(objectName="pugwash:service=garbageCollector")
| @Management(GarbageCollectorManagement.class)
I'm using JBoss-4.0.5.GA, JSP and Beans to enter and validate user entry on a
XHTML form (via post). I seam to remember reading that when the form data is
submitted the Jboss could be made to automagiclly submit the data in the
request to the validator bean. If so how? I've tried the followin
Hi
I'm using XML based JSP files, and they are working well for me. Somethings
like this:
http://www.w3c.org/1999/xhtml";
| xmlns:jsp="http://java.sun.com/JSP/Page";
| xmlns:fmt="http://java.sun.com/jsp/jstl/fmt";
| xmlns:h="http://java.sun.com/jsf/html";
Good call. It was an old version of web.xml. I was using 2.2:
|
|
Switched to v2.4:
| http://java.sun.com/xml/ns/j2ee";
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
| xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
| http://java.sun.com/xml
Install of JBoss from jboss-4.2.2.GA.zip on Linux. Implemented a simple
Stateful EJB3 so install is fine.
Started using JSTL in a JSP file and couldn't get to work. So I wrote
the following index2.jsp simple test:
| <%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>
|
I installed JBossAS 4.0.5 over the weekend using the JEMS installer. If you
selected the EJB3 option it configures hibernate with JbossAS for you. You may
also want to look at the jboss-seam-1.2.0.PATCH1which has examples using that
configuration. Both of these files can be downloaded via
ht
I installed JbossAS using the JEMS installer (on my Linux box - no poblem)
Selected for EJB3 and default.
Downloaded the jboss-seam-1.2.0-PATCH1 tarball and compiled and ran the
seam-booking example. No problem.
Change the JBossAS configuration to remove HSQLDS and replace it with a MySQL5
da
I am looking for a model like the one used on www.jboss.com. What I would like
to do is have unathenticated users have access to the servlets in a "read only"
mode, but for authenticated users to be able to use the same URLs but now get
the page rendered with a form and data entry widgets.
I d
Hi
I am currently evaluating Maven2 for use in my project. So far I like what I
see, and think that it is worth me switching. I have JBoss working the way I
want it (with MySQL as the back end), and Ant does a good job of building my
JARs and EARs.
With maven I can create a simple project, a