Thanks Rob, it works :) But I really think this should be easier to configure!
<http auto-config="true" access-decision-manager-ref="accessDecisionManager" use-expressions="true">
[...]...
Type: Posts; User: sbeigel; Keyword(s):
Thanks Rob, it works :) But I really think this should be easier to configure!
<http auto-config="true" access-decision-manager-ref="accessDecisionManager" use-expressions="true">
[...]...
I'd like to use hierarchical roles in my intercept-url declarations. I have hierarchical roles working for my method-security:
<global-method-security pre-post-annotations="enabled">
...
Good idea ;)
http://jira.springframework.org/browse/SEC-637
Hi,
after upgrading to Spring 2.5.1, Acegi's TokenBasedRememberMeServices has a dependecy on the spring-webmvc JAR because of its use of RequestUtils.getBooleanParameter() on line 370.
...
You are right -- I've created a test project w/out any Spring JARs, just a Java Project with Spring Project Nature and one configured Spring config file and there's no LinkageError and the completion...
?! For me, double-clicking an entry in the problems view opens the file containing the error.
Even the entry's properties (context menu -> Properties) doesn't give more information than what I...
Hi,
As far as I can see there is no stacktrace (at least I can't find any in the .log file or console view. There is an error entry in the Problems view (the one that I copied abbreviated in...
Hi,
just FYI, using the latest nightly build (Spring IDE 2.0.0.v200701250610) doesn't solve the problem (for me :) ...
Sebastian
Hi,
it seems like SpringIDE 2.0M2 doesn't work w/ WTP 2.0M4. Can someone confirm?
This is copied from the roadmap:
This release will work with Eclipse 3.3M4 and WTP 2.0 M4.
I'm using...
Hi Torsten!
Thanks a lot for your help! It works perfect :) And sorry for not RTFM-ing carefully... As usual, all information is there! :)
Sebastian
Hi,
I split my projects into a generic "base" project and I link this project via "required projects" (Project Properties/Java Build Path/Projects) to my other projects.
Unfortunately, Spring...
Ah great, it works :) Thanks a lot!
After going through the "Guide" (where "Create Spring Beans Config File Sets" is marked as "optional", I didn't understand that the Config Sets were necessary...
Hi,
I'm playing with SpringIDE for the first time! Thank you for this nice plugin! :)
Unfortunately I have a problem: After adding for example 2 config files (in the project's Spring...
Hi,
I'm using Spring 2.0rc1 with JPA (Hibernate impl). The EntityManager is injected using the @PersistenceContext annotation in my service layer:
@PersistenceContext
private...
You have to declare all the annotated classes explicitly. The package declaration does not mean to include all annoted classes but contains annotations for the package (defined in a file named...
Hi,
you referenced a blog entry I wrote a few weeks ago. I reposted an updated version in our team blog:
http://blog.diefirma.de/2006-01-10/using-the-new-java-persistence-api-with-spring/
...
You don't necessarily need Java 5 annotations (JSR-175). EJB 3.0 spec also gives the possibility to define metadata in traditional deployment descriptors.
I think Hibernate EntityManager also...
Have a look at my following posting, I've put together a quick howto to get started:
http://forum.springframework.org/showpost.php?p=43582&postcount=12
Sebastian
It's moved to the sandbox -- and currently not included in the 2.0 milestone builds. Don't know why actually...
Sebastian
I've put together a small tutorial describing all this stuff:
http://jroller.com/page/sbeigel?entry=using_the_new_java_persistence
Sebastian
Hi Jim.
I also used Thomas' slides to get started :)
I know about the transaction issue regarding my tests. I solved the problem by retrieving the current connection from the EntityManager:
...
I have a base test class extending AbstractTransactionalDataSourceSpringContextTests w/ a protected property "hibernateTemplate" which is set via
hibernateTemplate = new...
Any ideas? trisberg? Juergen?
I'm playing around w/ it and it works quite well! I have just one problem regarding integration tests. I try to verify my JPA code with direct JDBC (via jdbcTemplate). I provide the connection...
Actually, this modification has broken my integration tests :(
Execution stops in HibernateTransactionManager on line 649 (trying to get the connection from the session)
Setting...