I use the STS Agent Class Reloading quite frequently. It is a great feature.
I've run into an issue though where a class in my project is too big to be loaded/reloaded by the STS Agent....
Type: Posts; User: youngm; Keyword(s):
I use the STS Agent Class Reloading quite frequently. It is a great feature.
I've run into an issue though where a class in my project is too big to be loaded/reloaded by the STS Agent....
What is the outlook for spring support of Hibernate 4? If I find some issues while integrating Hibernate 4 could those potentially be targeted for Spring 3.1? Or is Hibernate 4 explicitly out of...
I decided to create an issue: https://jira.springsource.org/browse/SPR-8536
I recently upgraded my application from 3.0.5 to 3.1m2. In my application spring mvc is choosing a different method then it used to without any changes in annotations. I know that a lot of work has...
I'm working on upgrading my application from Spring Security 3.0 to 3.1.RC2. I noticed there are 2 new maven dependencies: aspectjweaver and openid4java. They're coming from spring-security-config....
It makes sense to only support inclusion under the assumption that I want to just include my code and exclude JDK and other library code.
And Exclusion would make it easier to, for example, remove...
Thanks christian. Is it possible to exclude instead of include?
Also when I get a testcase should I file a bug in the STS jira?
Mike
I've got an application that uses JaxB through CXF. When I enable agent based reloading I get errors like the following when JAXBContext.newInstance() is called:
Is it possible to tell the...
My application works fine with java agent based reloading is disabled. When I enable it I get the exception below. I assume the __execute method is supposed to be getting woven in??? ExampleService...
Oops. Wrong forum. I'll ask the tcServer forum.
My application works fine with java agent based reloading is disabled. When I enable it I get the exception below. I assume the __execute method is supposed to be getting woven in??? ...
perfect thanks. :)
Is there an update site available that hosts the 2.3.3.M2 release for eclipse 3.6?
http://dist.springsource.com/release/TOOLS/update/e3.6/ doesn't work
...
http://jira.springframework.org/browse/IDE-1048
The MANIFEST in org.springframework.security.annotation-2.0.4.B.jar in spring-ide contains an error in the manifest.
.BManifest-Version: 1.0
...
I'm trying to install springIDE and the update site at springide.org appears to be down.
Mike
I have a controller:
@RequestMapping(value="/pet/{id}", method=RequestMethod.GET)
public String show(@PathVariable("id") Long id, ModelMap modelMap) {
//Use id to get details...
Does anyone have a comment on this? We're looking for a standard WS framework and are considering Spring-WS. We've identifies WS-Policy as an important specification we need support for and would...
I have a project where I am using an embedded JTA provider and a LocalContainerEntityManagerFactoryBean configured with a HibernateJpaVendorAdapter.
I noticed that prepareTransaction was never...
Thanks. For what it's worth I tried out the latest nightly with our app and everything appeared to work great.
Just wondering when we can expect 2.0.4 to be released?
Mike
I have a circular reference between 2 request scoped beans. When I load one of the beans I get an OutOfMemory error. Is circular references of request scoped beans a known limitation? Either way...
I figured it out. For some reason I had to explicitly use a HibernateEntityManager specific TransactionFactory that allowed HibernateEntityManager to join in with jta transactions. I had to add the...
Any luck with this? I'm having the same problem. See my post here: http://forum.springframework.org/showthread.php?p=81046#post81046
I'm using The latest HibernateEntityManager with Spring 2.0 trying to use JTA Transactions. Everything appears to work great, except the entityManager is not flushing when the JTA transaction...