I realize you've solved your problem now, but I'll post something else for others to try. I was getting "Duplicate method name&signature" on a @MappedSuperclass (unrelated to my earlier post). This...
Type: Posts; User: luke.way; Keyword(s):
I realize you've solved your problem now, but I'll post something else for others to try. I was getting "Duplicate method name&signature" on a @MappedSuperclass (unrelated to my earlier post). This...
Sorry to resurrect this thread, I came across it while researching something else.
This answer may be more relevant to Bruce, as I ran into this problem going from 1.1.5 to 1.2.x a while ago.
...
Final update:
The only part that was really needed to solve my issue was to make sure the backing object was in the session like this:
...
@SessionAttributes({ "foo" })
public class...
I found this, which I think will solve my problem (starting with post #15):
http://forum.springsource.org/showthread.php?t=95788&page=2
I just need to tweak it a bit to disallow the field only...
Ah, that makes sense. I'm using Roo, which generated something like this in the aspect:
@RequestMapping(method = RequestMethod.PUT)
public String FooController.update(@Valid Foo foo,...
Hi,
I'm trying to do some basic field-level security where ROLE_ADMIN can edit a field on an entity, but ROLE_USER can not.
I am able to hide this field from ROLE_USER in the JSP file by using...
Correction: For the second bullet (pushing findSic to .java and throwing exception). This does return to the form and prints a message near the field, but this is what it says:
Failed to...
I have a Company entity which has a ManyToOne relationship with an SIC entity:
public class Company {
...
@ManyToOne
@JoinColumn(name = "SIC")
I usually do. I run STS with the embedded Roo shell.
This is what I ended up doing:
http://forum.springsource.org/showpost.php?p=320805&postcount=7
I didn't need the WebSphere check and I was using c3p0 so I made a couple changes and ended up...
Roo 1.1.1.RELEASE (included with STS 2.5.2.RELEASE)
Oracle 10g
ojdbc14.jar (10.2.0.5)
Hibernate 3.6.0.Final
I'm having trouble saving Clobs to an Oracle database. I used DBRE and this is what...
It took me a while to figure this one out, so I thought I'd post in case anyone else has this issue. Searching for "EL1027E" didn't yield any relevant results for me.
After upgrading to Roo 1.1.1...