Search Results

0
votes

@EJB injection and the Enterprise Naming Context - relation between the two.

I think if you need to inject an Stateful Session Bean you gonna need some context that knows the relation between your EJB instance and some previously injected EJB dependency (to that instance). …
0
votes

Application server - to use or not use?

An application server is an architectural solution. You have to use it if you are going to think different reusable modules of your application. If you don't mind that your services should be imple …
2
votes

Jboss 4.2 swallows the stacktrace on causes of EJB Exceptions, how can that be prevented?

It's an implementation decision, they don't set the original cause as the cause of the ejbException. You can access to that looking the method getCausedByException(). You have a JIRA[1] about that …
2
votes

Can Drools Flow scale to executing hundreds of thousands of process instances per day?

Just appear an official post about this here …
1
vote

Java EE Jar file sharing

I really don't think putting libraries in common/lib is a good idea. The idea behind the use of war files as applications into a servlet container, is to have a real idea of isolation between your …
1
vote

Simple Workflow Management with JEE

Yes, I absolutely think what you are doing in that scenario is starting different business processes. Using tools like JBPM or …
1
vote

Java reflection: How do I override or generate methods at runtime?

In java6 has been added the possibility to transform any already loaded class. Take a look at the …
1
vote

Is there a way to declare an annotation attribute for *any* enum?

If your enums can implement all the same interface, you may find useful this question "Coding tip - …
0
votes

Maven dependencies jar not usable

Had you take a look at onejar-maven-plugin. It does what you want in a straightforward way. …
0
votes

How to mark some code that must be removed before production?

I use the //FIXME keyword that eclipse displays, together with //TODO, in the Tasks View (you can filter what to see on it). You shouldn't go out to production if there is some //FIXME around :) …
0
votes

What is your favorite hot-key in Eclipse?

alt+shift+S, then r is for generate getters and setters. It looks tricky but once you get used to this combination you cannot live without it. …
0
votes

Best API/LIB for encoding/decoding base64/quoted-printable in Java

if you use Sun's jvm you can use sun.misc.BASE64Encoder/Decoder but it's not Open Source …
1
vote

Spring DaoSupport and @PersistanceContext EntityManager?

For injecting the EntityManager you just need to add the next definition <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" /> …
0
votes

creating a queue in JBoss MQ

You also have to add the destinationManager to the queue declaration. Try this: <mbean code="org.jboss.mq.server.jmx.Queue" name="jboss.mq.destination:service=Queue,name=MyQue …