Uhm... not sure about this, but it seems like you're adding both components to the center part of the borderlayout, adding the table last. It's been a while since I've worked with BorderLayout, but...
Type: Posts; User: LievenDoclo; Keyword(s):
Uhm... not sure about this, but it seems like you're adding both components to the center part of the borderlayout, adding the table last. It's been a while since I've worked with BorderLayout, but...
It most certainly is, but due to time constraints I haven't been able to do much in the last couple of weeks. Normally, this should change in the next couple of weeks :). Could you tell me what the...
Yep, that's indeed a bug. I'll look into it tonight.
Thx for the compliment.
Found a solution: don't use aspectj-autoproxy, but define the aop config instead.
<aop:config>
<aop:pointcut id="transactionalPointcut"...
Hi everyone,
I hope you can help me with this one:
I'm writing JUnit tests for a JPA 2.0 application. As you may know, when writing transactional tests, you need to manually flush the...
My bad, removed them prematurely. Will commit changes shortly.
An update:
About 75 percent of the documentation has been written and some extra features have been added, one of which I'm quite proud of: the rewritten version of the exception handler for...
Try here:
http://forum.springframework.org/forumdisplay.php?f=41
Wrong forum, I think you're referring to Spring Batch?
You're welcome
I just pushed the change so that every Valkyrie subproject uses the aspectj plugin. This way STS now works too. I also upgraded the aspectj plugin to 1.3.1, which uses aspectrt 1.6.10.
Quite strange that it doesn't use the aspectjtools from your maven plugin (otherwise it would've used 1.6.7. I'm currently used 10.0.2 with JDK 1.6.0_20 on Ubuntu with Maven 3.0. Unfortunately, I...
Just checked your code, and it runs :(. It must be something with the configuration of the aspectj compiler, as the NPE is caused by a bean that should have been injected. What version of intellij...
I just changed the POM a bit so that the codebase now works with STS. I'll push the changes this evening. The change was simple:
- move the aspectj compiler from the core module to the parent pom
-...
What version of IntelliJ are you using? IDEA X? The ultimate or community edition? In your project settings, are you using the ajc compiler with the right aspectjtools library?
I'm using IDEA X...
I just did a fresh clone of the entire git repo and a mvn clean install. Everything compiles as it should. Are you sure you did a git pull of the entire codebase?
Do a git pull and try again, if you will. Could've been a problem with some recent changes
If you're using Eclipse/STS/RAD/MyEclipse/..., take a look at this:
http://maven.apache.org/plugins/maven-eclipse-plugin/examples/ajdt-projects.html
As for Netbeans... I haven't got a clue.
As...
Are you running the class from an IDE or from the command line? If running from an IDE, remember that Valkyrie using AOP weaving. IntelliJ detects this out-of-the-box and compiles the aspects into...
Are you sure you're working on the EventDispatchThread?
It's been a while since Valkyrie saw the light. A small update:
- the entire RCP codebase has been ported
- complete Spring 3 integration,
- simplifications on the configuration level (a skeleton...
Well, there is also another reason. Spring RCP used the org.springframework package in its code. As Spring RCP isn't really a part of SpringSource (none of the current developers are SpringSource...
I just pushed the MyDoggy support to Valkyrie. Sample is pending.
Not yet, but it's an idea :). Anyway, creating a command that changes the look and feel is quite simple, just change the LookAndFeel through the UIManager and then update the ApplicationWindow's...
Add the following rules to your RulesSource when using a RulesValidator in your form:
Rules rules = new Rules(...);
rules.add(new RequiredIfTrue("low", rules.any("filter", new Constraint[]...