Posts

Integreting Spring Beans with JMX

.. and manage via http://<server>:8080(or web port)/jmx-console: <beans>   <!-- this bean must not be lazily initialized if the exporting is to happen -->   <bean id="exporter" class="org.springframework.jmx.export.MBeanExporter" lazy-init="false">     <property name="beans">       <map>         <entry key="bean:name=testBean1" value-ref="testBean"/>       </map>     </property>   </bean>   <bean id="testBean" class="org.springframework.jmx.JmxTestBean">     <property name="name" value="TEST"/>     <property name="age" value="100"/>   </bean> </beans>

RUP Online

http://www.ts.mah.se/RUP/RationalUnifiedProcess/

Debug Java applications remotely with Eclipseper Data

Remote debugging can be useful for application development, such as developing a program for a low-end machine that cannot host the development platform, or debugging programs on dedicated machines like Web servers, whose services cannot be shut down. Other examples include Java applications running with limited memory or CPU power, such as mobile devices, or developers wanting to separate the application and development environments, etc... http://www.ibm.com/developerworks/java/library/os-eclipse-javadebug/index.html?ca=dgr-jw22os-eclipse-javadebug/index.html&S_TACT=105AGX59&S_CMP=GRsitejw22

Welcome to FitNesse!

The fully integrated standalone wiki, and acceptance testing framework http://fitnesse.org/FrontPage

YUI

YUI is a free, open source JavaScript and CSS framework for building richly interactive web applications. http://yuilibrary.com/

ADD-ONS - Tamper Data

Use tamperdata to view and modify HTTP/HTTPS headers and post parameters... https://addons.mozilla.org/en-US/firefox/addon/tamper-data/

Portlet with Spring Portlet MVC

Developing a Portlet with Spring Portlet MVC and SimpleFormController A previous article explained the basics of developing a Portlet. This article will introduce the Spring Portlet MVC Framework for developing Portlets. Specifically, this article will help you create a new Portlet using the SimpleFormController available in the Spring Portlet MVC Framework... http://www.unicon.net/node/838