GWT Designer for Eclipse 3.6 can cause project compile freeze

Lately I installed GWT Designer for Eclipse Helios (3.6). I wanted to check it’s features. They aren’t so cool I’ve expected but that’s other story. The problem was that suddenly my main GWT enabled project began to freeze during compilation.  The…Lately I installed GWT Designer for Eclipse Helios (3.6). I wanted to check it’s features. They aren’t so cool I’ve expected but that’s other story. The problem was that suddenly my main GWT enabled project began to freeze during compilation.  The…

Lately I installed GWT Designer for Eclipse Helios (3.6). I wanted to check it’s features. They aren’t so cool I’ve expected but that’s other story. The problem was that suddenly my main GWT enabled project began to freeze during compilation.  The project is maven enabled also.

So it freezed in about half of compilation. All other features of Eclipse worked well. Restarting Eclipse and Windows didn’t help anyway.
After about an hour of investigating I’ve found that GWT Designer caused this. After removing it all came back to order.

Ofcourse I suspect that something is wrong with my Eclipse for example I have too many bizzarre plugins installed but if I could have such problems you could have them too. So be warned :-)

You May Also Like

Cross-platform mobile apps – possible or not?

What is Titanium and how it works. Titanium is an open-source solution for cross-platform, almost-native mobile app development. It has its own MVC, JavaScript and XML-based framework Alloy. Titanium is based on assumption, that each app can be divided into two parts: UI, which is platform-specific part and application core – business logic, common to all […]What is Titanium and how it works. Titanium is an open-source solution for cross-platform, almost-native mobile app development. It has its own MVC, JavaScript and XML-based framework Alloy. Titanium is based on assumption, that each app can be divided into two parts: UI, which is platform-specific part and application core – business logic, common to all […]

Tomcat: Problemy z requestami zawierającymi polskie znaki diakrytyczne


Jeśli jest problem z pobieraniem plików z polskimi znakami diakrytycznymi, to trzeba dopisać kodowanie do connectora w tomcat/conf/server.xml

URIEncoding="UTF-8"

Typowa konfiguracja connectora będzie wyglądała tak

<Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" URIEncoding="UTF-8" />