Hi,
bit of an xdoclet / jboss n00b so excuse my ignorance.
I’ve got a simple web application that I want to deploy to jboss 3.2, when I did this manually, to set up a datasource, I create a jboss-web.xml that looks like the following…
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jboss-web
PUBLIC "-//JBoss//DTD Web Application 2.3V2//EN"
"http://www.jboss.org/j2ee/dtd/jboss-web_3_2.dtd">
<jboss-web>
<resource-ref>
<res-ref-name>jdbc/myoracle_devuk</res-ref-name>
<jndi-name>java:myoracle_devuk</jndi-name>
</resource-ref>
</jboss-web>
I was thinking that it would have been nice to get xdoclet to generate this for me. So I added the standard web configuration using the MyEclipse-XDoclet dialog, then I rclicked the webdoclet and added jbosswebxml.
But when I look in the properties, I expected to see a resource-ref entry… there was none…
Does this functionality exist… if it doesn’t, how hard is it to add..
thanks.