There is one coming out actually from Apress.
Type: Posts; User: Colin Yates; Keyword(s):
There is one coming out actually from Apress.
Hmm, that is odd. I (as others) have successfully managed to utilise Hibernate within the platform.
If the imports were optional, then that might explain it, but if they are missing completely,...
You need to import Hibernate into bundles that:
- contain types that hibernate will persist
- bundles that use hibernate
- (possibly*1) any bundles that reference services that result in...
If you are using myfaces, then make sure you don't depend on the generic javax.faces API, Import the myfaces library.
We will hopefully releasing the swf-booking-faces sample converted into a set...
Without being all cryptic and mysterious ;) I don't expect anything to happen in the next couple of months, however things should get pretty interesting after that...
If you want to fix it...
Without being all cryptic and mysterious ;) I don't expect anything to happen in the next couple of months, however things should get pretty interesting after that...
The POMs are part of the distribution, and I believe they were all correct as of 0.8a.
The changes in 0.9 are for the most part minor, and the POMs should have been updated.....
For now,...
It is pretty simple actually, and you have everything you need in the Spring distro.
Check out http://static.springframework.org/spring/docs/2.5.x/reference/aop.html#aop-aj-ltw
Thanks,
This has been reported to the appropriate people.
There were a number of issues last time, and given the demand was pretty small (as far as we could see) we decided not to for this release. If this is *really* important, and enough people shout...
Not sure whether this is the problem, but getSOMETHING isn't actually a JavaBean property...getSomething (note the casing is)...
Dear Spring Community,
I am pleased to announce that Spring Modules (SM) 0.9 has been released. Downloads | Docs (Html , PDF) | JavaDocs
The new version contains many bug fixes and...
You might want to post this in the Spring *Dynamic* Modules forum :)
You might want to post this in the Spring *Dynamic* Modules forum :)
Have you checked out the documentation on springmodules.dev.java.net?
Also, why not download Spring Modules and have a look at the samples?
Oleg,
Spring Modules and Spring Dynamic Modules are two different projects. Spring Dynamic Modules is related to OSGi, where as Spring Modules are a collection of individual projects that extend...
Why not raise this as a JIRA (jira.springframework.org)
Good question,
Could you please raise this as a JIRA (jira.springframework.org).
Many thanks.
If this is an issue with the sample, would you mind raising this as a JIRA please (jira.springframework.org).
Thanks.
Can you not use a propertyPlaceHolder to externalise the timings and then use JMX to refresh the application context?
Well that is good to hear :)
There is a new book (which I had nothing to do with) which is much more up to date: http://www.ervacon.com/products/swfbook/index.html
An approach I have used in the past is to explicitly model the operation. For example, if I have a User domain object (which *doesn't* have a getPassword :)) then I might have a RequestToAddUser...
Your MethodInterceptor should look the same as "YourAdvice", although obviously implementing the MethodInterceptor interface and implementing the invoke method.
You don't want to change the...
Nope, you are right, it should return an Object, assuming that getByName returns something....
What problems are you having exactly?
You need to use "around" advice. You define the advice around the ClassA.getByName() and take a PreceedingJoinPoint.
Something like the following (no guarantee to work or compile, just thinking...