User Mattias Holmqvist - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T07:16:47Zhttp://stackoverflow.com/feeds/user/38519http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1567144/cant-get-swt-display-on-mac-os-x0Can't get SWT Display on Mac OS X.Mattias Holmqvist2009-10-14T15:38:50Z2009-10-26T05:58:51Z
<p>I'm running Mac OS X Snow Leopard and wan't to access the Display from the activator in an OSGi bundle. </p>
<p>Below is the start method for my activator:</p>
<p><code>@Override
public void start(BundleContext context) throws Exception {
ExecutorService service = Executors.newSingleThreadExecutor();
service.execute(new Runnable() {</p>
<pre><code> @Override
public void run() {
Display display = Display.getDefault();
Shell shell = new Shell(display);
Text helloText = new Text(shell, SWT.CENTER);
helloText.setText("Hello SWT!");
helloText.pack();
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
});
}
</code></pre>
<p></code></p>
<p>Calling this code in a Windows environment works fine, but deploying on Mac OS X I get the following output: </p>
<pre>
2009-10-14 17:17:54.050 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x101620d20 of class NSCFString autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.081 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x100119240 of class NSCFNumber autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.084 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x1001024b0 of class NSCFString autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.086 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x7fff701d7f70 of class NSCFString autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.087 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x100113330 of class NSCFString autoreleased with no pool in place - just leaking
2009-10-14 17:17:54.092 java[2010:10003] *** __NSAutoreleaseNoPool(): Object 0x101624540 of class NSCFData autoreleased with no pool in place - just leaking
.
.
.
</pre>
<p>I've used the -XstartOnFirstThread VM argument without any luck. I'm on 64-bit Cocoa but I've also tried 32-bit Cocoa.</p>
<p>When trying on Carbon I get the following error:</p>
<pre>
Invalid memory access of location 00000020 eip=9012337c
</pre>
<p>When debugging into the Display class I can see that the Displays[] array only contains null references.</p>
http://stackoverflow.com/questions/1570416/when-to-use-wrapper-class-and-primitive-type/1570607#15706072Answer by Mattias Holmqvist for When to use wrapper class and primitive typeMattias Holmqvist2009-10-15T06:25:09Z2009-10-15T06:25:09Z<p>Collections are the typical case for the simple Java wrapper objects. However, you might consider giving the Wrapper a more specific meaning in the code (value object).</p>
<p>IMHO there's almost always a benefit to use value objects when it boils down to readability and maintainance of the code. Wrapping simple data structures inside of objects when they have certain responsibilities often simplifies the code. This is something that is very important in <a href="http://domaindrivendesign.org/" rel="nofollow">Domain-Driven Design</a>. </p>
<p>There is of course the performance issue, but I tend to ignore that until I have the possibility to measure the performance with proper data and do more directed actions towards the problematic area. It might also be easier to understand the performance issue if the code is easy to understand as well.</p>
http://stackoverflow.com/questions/1377979/pax-import-bundle-and-spring-dm-bundles/1378536#13785360Answer by Mattias Holmqvist for Pax-import-bundle and Spring DM bundlesMattias Holmqvist2009-09-04T10:55:45Z2009-09-04T10:55:45Z<p>The problem was a combination of missing repositories and wrong version of the artifact (1.2.0 instead of 1.2). </p>
<pre>
pax-add-repository -i springsource-repository-release -u http://repository.springsource.com/maven/bundles/release
pax-add-repository -i springsource-repository-external -u
http://repository.springsource.com/maven/bundles/external
pax-import-bundle -g org.springframework.osgi -a spring-osgi-extender -v 1.2 -- -DwidenScope -DimportTransitive
</pre>
<p>Fixed the problem.</p>
http://stackoverflow.com/questions/1377979/pax-import-bundle-and-spring-dm-bundles0Pax-import-bundle and Spring DM bundlesMattias Holmqvist2009-09-04T08:31:33Z2009-09-04T10:55:45Z
<p>Hi,</p>
<p>I'm following the examples from <a href="http://www.pragprog.com/titles/cwosg/modular-java" rel="nofollow">Modular Java</a> but I'm having trouble with chapter 6 and adding the Spring DM modules to my project.</p>
<p>I run: <pre>pax-import-bundle -g org.springframework.osgi -a spring-osgi-extender -v 1.2 -- -DwidenScope -DimportTransitive</pre></p>
<p>When running pax-provision the Spring DM bundles are not resolved. I get complaints about missing imported packages from the spring.osgi.extender and the other two unresolved bundles. My list of provisioned bundles look like this:</p>
<pre>
0 ACTIVE org.eclipse.osgi_3.5.0.v20090520
1 ACTIVE org.eclipse.osgi.util_3.2.0.v20090520-1800
2 ACTIVE org.eclipse.osgi.services_3.2.0.v20090520-1800
3 ACTIVE org.ops4j.pax.logging.pax-logging-api_1.3.0
4 ACTIVE org.ops4j.pax.logging.pax-logging-service_1.3.0
5 INSTALLED org.springframework.osgi.extender_1.2.0
6 INSTALLED org.springframework.osgi.core_1.2.0
7 INSTALLED org.springframework.osgi.io_1.2.0
8 ACTIVE com.springsource.slf4j.org.apache.commons.logging_1.5.0
9 ACTIVE com.springsource.slf4j.api_1.5.0
Fragments=10
10 RESOLVED com.springsource.slf4j.log4j_1.5.0
Master=9
11 ACTIVE com.springsource.org.aopalliance_1.0.0
12 ACTIVE com.springsource.edu.emory.mathcs.backport_3.1.0
13 ACTIVE com.springsource.org.apache.log4j_1.2.15
14 ACTIVE com.springsource.javax.jms_1.1.0
15 ACTIVE com.springsource.javax.mail_1.4.0
16 ACTIVE com.springsource.javax.transaction_1.1.0
17 ACTIVE com.springsource.javax.activation_1.1.0
</pre>
<pre>
diag 5
</pre>
<p>gives the following output:</p>
<pre>
initial@reference:file:../bundles/org.springframework.osgi.extender_1.2.0.jar/ [5]
Direct constraints which are unresolved:
Missing imported package org.springframework.beans_[2.5.6,4.0.0).
Missing imported package org.springframework.beans.factory_[2.5.6,4.0.0).
Missing imported package org.springframework.beans.factory.config_[2.5.6,4.0.0).
Missing imported package org.springframework.beans.factory.xml_[2.5.6,4.0.0).
Missing imported package org.springframework.context_[2.5.6,4.0.0).
Missing imported package org.springframework.context.event_[2.5.6,4.0.0).
Missing imported package org.springframework.core_[2.5.6,4.0.0).
Missing imported package org.springframework.core.enums_[2.5.6,4.0.0).
Missing imported package org.springframework.core.io_[2.5.6,4.0.0).
Missing imported package org.springframework.core.task_[2.5.6,4.0.0).
Missing imported package org.springframework.osgi_[1.2.0,1.2.0].
Missing imported package org.springframework.osgi.context_[1.2.0,1.2.0].
Missing imported package org.springframework.osgi.context.event_[1.2.0,1.2.0].
Missing imported package org.springframework.osgi.context.support_[1.2.0,1.2.0].
Missing imported package org.springframework.osgi.extensions.annotation_[1.2.0,1.2.0].
Missing imported package org.springframework.osgi.service.importer_[1.2.0,1.2.0].
Missing imported package org.springframework.osgi.service.importer.event_[1.2.0,1.2.0].
Missing imported package org.springframework.osgi.service.importer.support_[1.2.0,1.2.0].
Missing imported package org.springframework.osgi.util_[1.2.0,1.2.0].
Missing imported package org.springframework.scheduling.timer_[2.5.6,4.0.0).
Missing imported package org.springframework.util_[2.5.6,4.0.0).
...
</pre>
http://stackoverflow.com/questions/336609/what-is-the-next-great-ui-metaphor-that-will-replace-the-desktop5What is the next great UI metaphor that will replace the Desktop?Mattias Holmqvist2008-12-03T09:27:33Z2009-06-29T13:23:38Z
<p>The desktop metaphor has been hanging around for a number of years now. The creativity within the software field should be able to produce a new cooler metaphor that doesn't involve dragging windows around all the time.</p>
<p>I believe that the desktop metaphor has soon been stretched to its maximum. What do you think?</p>
<p>Have you heard of any new cooler ways of using the power in today's computers that's different/more productive than the desktop? Or do you have a new crazy idea for this?</p>
http://stackoverflow.com/questions/793042/step-by-step-sample-jms-in-spring-framework/1047817#10478171Answer by Mattias Holmqvist for step by step Sample JMS in Spring FrameworkMattias Holmqvist2009-06-26T07:34:27Z2009-06-26T07:34:27Z<p>You could check out <a href="http://rads.stackoverflow.com/amzn/click/1933988134" rel="nofollow">Spring in Action</a>. It has a chapter about messaging using JMS from Spring which I found helpful.</p>
http://stackoverflow.com/questions/336578/hibernate-and-spring-transactions-using-private-constructors-static-factory-met1Hibernate and Spring transactions - using private constructors/static factory methodsMattias Holmqvist2008-12-03T09:16:35Z2008-12-10T11:06:00Z
<p>We have a Hibernate/Spring application that have the following Spring beans:</p>
<pre><code><bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager" />
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" />
</code></pre>
<p>When wiring the application together we get the following error when using private constructors in our hibernate entities:</p>
<pre><code>Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: No visible constructors in class 'ourclass'
</code></pre>
<p>The entities are typical domain objects such as an Employee or the like. </p>
<p>When changing the constructor's visibility modifier to package (or public) the application runs fine and the entities gets stored/loaded in the database. How do we/can we use private constructors/static factory methods with Spring/Hibernate transaction management?</p>
<p>We use Hibernate annotations to map the entities/relationships. No bean definitions are declared in the applicationContext.xml for the domain class that is related to the problem. It is a pojo that should have a static factory method and a private constructor.</p>
<p>How can we make Hibernate (org.springframework.spring-orm.hibernate3 classes i guess) make use of the static factory method instead of the constructor? Or possibly make it call a private constructor if necessary?</p>
<p>Using the spring factory-method configuration would make sense but the entities are not mapped as beans in our applicationContext.xml. They are only annotated with the @Entity annotation for Hibernate persistence.</p>
<p>Hope this edit clearifies (rather than mystifies) the question. :)</p>
http://stackoverflow.com/questions/334388/design-pattern-parsing-similar-but-differing-schemas-in-text-files/334460#3344603Answer by Mattias Holmqvist for Design Pattern: Parsing similar, but differing schemas in text files.Mattias Holmqvist2008-12-02T16:01:08Z2008-12-02T16:01:08Z<p>This sounds like a candidate for the Strategy pattern. An example in C# can be found <a href="http://www.dofactory.com/Patterns/PatternStrategy.aspx" rel="nofollow">here</a> and another one <a href="http://www.c-sharpcorner.com/UploadFile/rmcochran/strategyPattern08072006095804AM/strategyPattern.aspx" rel="nofollow">here</a>. A brief description is available on <a href="http://en.wikipedia.org/wiki/Strategy_pattern" rel="nofollow">Wikipedia</a>. </p>
<p>More complete descriptions is available in book by <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Fowler</a> and <a href="http://rads.stackoverflow.com/amzn/click/0321213351" rel="nofollow">Kerievsky</a>.</p>
<p>It is also available from the GoF book.</p>
http://stackoverflow.com/questions/334135/refactoring-a-hibernate-entity-into-subclasses1Refactoring a Hibernate entity into subclassesMattias Holmqvist2008-12-02T14:40:17Z2008-12-02T15:39:31Z
<p>I have a class that is currently mapped as an entity in a database table using Hibernate. This class should be refactored into an abstract class containing some field common to all of its subclasses.</p>
<p>I'm using annotations for mapping hibernate entities/relationships classes.</p>
<p>I would like suggestions/variants on how to do this refactoring. </p>
<p>Also, some suggestions on how to move the data that is stored in the database (for the future abstract superclass) into one of the concrete subclasses.</p>
http://stackoverflow.com/questions/306048/developer-conferences-worth-visiting/306054#3060541Answer by Mattias Holmqvist for Developer conferences worth visiting?Mattias Holmqvist2008-11-20T17:03:12Z2008-11-20T17:03:12Z<p>JavaOne this spring had lots of interesting discussions in BoF sessions and I felt that I gained plenty of inspiration from my visit to San Francisco.</p>
<p>Maybe the contents can be found on Google but the buzz, talks and people cannot be found there. I recommend next year's JavaOne and hope It'll be as good as this year's.</p>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/304639#3046392Answer by Mattias Holmqvist for Why didn't unit testing work out for your project?Mattias Holmqvist2008-11-20T08:30:18Z2008-11-20T08:30:18Z<p>In our case the development team was relatively new to the notion of refactoring as well. Hence, it was impossible to keep the tests clean and understandable. Instead of having duplicated code only in the application we had complex, duplicated and intertangled code in the tests as well. </p>
<p>If you don't keep your test code nice and DRY it may grow into a big ball of bad-smelling mud. This will probably only slow the project down instead of giving the team increased development velocity.</p>
http://stackoverflow.com/questions/293900/how-can-i-automate-script-creating-a-war-file-in-eclipse/298824#2988240Answer by Mattias Holmqvist for How can I automate (script) creating a war file in eclipse?Mattias Holmqvist2008-11-18T14:09:24Z2008-11-18T14:09:24Z<p>You could also setup a Maven build for your web project. Typing mvn package from the command line would then build the project for you. </p>
<p>For integration between Maven and Eclipse, see <a href="http://m2eclipse.codehaus.org/" rel="nofollow">m2Eclipse</a> and <a href="http://maven.apache.org/eclipse-plugin.html" rel="nofollow">Maven Eclipse Plugin</a>.</p>
http://stackoverflow.com/questions/1567144/cant-get-swt-display-on-mac-os-x/1611024#1611024Comment by Mattias Holmqvist on Can't get SWT Display on Mac OS X.Mattias Holmqvist2009-10-29T20:18:27Z2009-10-29T20:18:27ZThat was my initial idea too. Then I was wondering if this wasn't provided already by OSGi in some way...http://stackoverflow.com/questions/1567144/cant-get-swt-display-on-mac-os-x/1611024#1611024Comment by Mattias Holmqvist on Can't get SWT Display on Mac OS X.Mattias Holmqvist2009-10-27T22:22:53Z2009-10-27T22:22:53ZYou've understood my question correctly. The last comment you're saying that you're looking to add a hook to run the SWT event loop. I believe that's supported by the Display class, once you've created the first instance of it in the main thread, the static methods will work as expected. At least if you believe the docs. From my understanding you will then be able to call Display.asyncExec(..) to execute code in the SWT event thread...that's how you do it in Eclipse at least.http://stackoverflow.com/questions/1567144/cant-get-swt-display-on-mac-os-x/1611024#1611024Comment by Mattias Holmqvist on Can't get SWT Display on Mac OS X.Mattias Holmqvist2009-10-24T14:31:10Z2009-10-24T14:31:10ZIs it possible to get hold of some simple code to get that up and running? And a working start configuration?http://stackoverflow.com/questions/1567144/cant-get-swt-display-on-mac-os-x/1579419#1579419Comment by Mattias Holmqvist on Can't get SWT Display on Mac OS X.Mattias Holmqvist2009-10-17T07:17:03Z2009-10-17T07:17:03ZHowever, I've learnt that Mac OS X requires that thread to be thread 0. That might explain why it works on windows but not on Mac. I don't know how to solve that though...http://stackoverflow.com/questions/1567144/cant-get-swt-display-on-mac-os-x/1579419#1579419Comment by Mattias Holmqvist on Can't get SWT Display on Mac OS X.Mattias Holmqvist2009-10-17T07:15:33Z2009-10-17T07:15:33ZNo I'm not trying to create an Eclipse plugin. I'm trying to use SWT in an OSGi environment without Eclipse RCP. I know that the Workbench in RCP is responsible for creating the Display and that it is performed in the main thread before any plugins are activated. AFAIK it should be possible to create the Display in any thread, as long as it is used as the UI thread after that.
From the doc:
"In SWT, the thread which creates a Display instance is distinguished as the user-interface thread for that display."http://stackoverflow.com/questions/1571575/how-do-i-add-3rd-party-osgi-bundles-to-a-deployment-package-with-maven/1573565#1573565Comment by Mattias Holmqvist on How do I add 3rd-party OSGi bundles to a deployment package with Maven?Mattias Holmqvist2009-10-15T16:40:10Z2009-10-15T16:40:10ZI also recommend the Pax tool suite.http://stackoverflow.com/questions/336578/hibernate-and-spring-transactions-using-private-constructors-static-factory-met/347953#347953Comment by Mattias Holmqvist on Hibernate and Spring transactions - using private constructors/static factory methodsMattias Holmqvist2008-12-09T14:10:33Z2008-12-09T14:10:33ZSince it is the Hibernate classes withing org.springframework.spring-orm.hibernate that are causing problems i'm pretty convinced it's related to Spring. The AnnotationSessionFactoryBean is a suspect...http://stackoverflow.com/questions/336578/hibernate-and-spring-transactions-using-private-constructors-static-factory-met/337408#337408Comment by Mattias Holmqvist on Hibernate and Spring transactions - using private constructors/static factory methodsMattias Holmqvist2008-12-03T15:06:40Z2008-12-03T15:06:40ZWell, I don't want public or package (package is actually ok but not nice) constructors since it makes the API less clean. I want a static factory method (or factory) to be used when instantiating the class from other classes. It would be ideal if hibernate could use a static factory method as well.http://stackoverflow.com/questions/336578/hibernate-and-spring-transactions-using-private-constructors-static-factory-met/336598#336598Comment by Mattias Holmqvist on Hibernate and Spring transactions - using private constructors/static factory methodsMattias Holmqvist2008-12-03T10:17:07Z2008-12-03T10:17:07ZCould you elaborate a bit on how to do this so that the Hibernate transaction manager uses the factory method? It is the transaction manager that throws the exception. And we use Hibernate annotations to map the entities/relationships.