Spring

 http://www.slideshare.net/herrodius/spring-actionscript-at-devoxx

adi 20/11/2009 - 01:41

Kauklahti is an open source tool aiming to keep ORM simple. It integrates with Spring JdbcTemplate and works like BeanPropertyRowMapper. But it also supports table joining and full CRUD generation.

itaip 28/10/2009 - 08:54

In this blogpost, Rod Johnson, SpringSource's chief, who has been using the blogging as a mass-media means from its early days, talks about the differences between the business approaches of SpringSource and RedHat, which seem to have taken JBoss's assertive approach regarding Spring and the future of enterprise development. Very interesting, although quite biased!

 

see: http://blog.springsource.com/2009/06/03/red-hat-reacts-to-springsources-...

zvika 10/06/2009 - 23:15

 Sometimes, when we using Spring we need to define beans such as dataSource or taskExecutor and pass its parameters as properties. In our example we will create new ThreadPoolTaskExecutor which will be used as thread pool for our tasks.

 

Basic configuration for such bean is very straight forward:

 

danny 20/12/2011 - 17:32

Spring JPA aims to significantly improve the implementation of data access layers by reducing the effort to the amount that's actually needed. As a developer you write your repository interfaces, including custom finder methods, and Spring will provide the implementation automatically.

 

Just to feel what Spring JPA is go to the getting-started tutorial at Spring Source Team Blog

 

Spring Data JPA - 1.0.1.RELASE is the last official release.

dmitri 11/09/2011 - 09:17

For a client I had to implement spring based startup module. The module's context xml file simply defines annotation-config and component-scan element and doesn't define any bean. When I add 50-th bean into the module, I reliazed I can't manage dependencies without painting them anymore.

 

The fast search had lead to 3 nice tools: SpringSource Tool Suite, BeanDoc and Maia EAP. Each one of them may analyze dependencies and may paint them. But no one of them may deal with annotations.

 

Annotated Bean(s) Dependency Analyzer scans folders and paints dependencies of every discovered spring bean. Behind the scene, the spring is doing the hard work.

dmitri 21/03/2011 - 01:54

Great presentation based on a lecture given by Yoav Abrahami at Wix.com, which I went to this week - thanks for the invitation, Olga!

AspectJ, AOP, code genetation, and other really interesting & cool stuff!

 

http://www.slideshare.net/yoavwix/java-bytecode-and-classes

zvika 29/11/2010 - 08:32

http://www.infoq.com/presentations/Spring-3.0-3.1-3.2

 

"Jurgen Holler reviews the most important features that came with Spring 3.0, he previews the 3.1 version of the framework planned to have its first milestone release in late November 2010, and he takes a sneak preview at Spring 3.2 which is supposed to support Java 7."

ittayd 17/11/2010 - 13:30

Anyone knows a way to make PropertyPlaceholderConfigurer ignore missing properties and not call the setter method at all?
for example:

<bean id="webAppContext" class="org.eclipse.jetty.webapp.WebAppContext" scope="prototype">
<property name="maxFormContentSize" value="${maxFormContentSize}"/>
</bean>

I can use a default value for the placeholder, but in some cases I want to let jetty use whatever it defaults to, so I will not supply the maxFormContentSize property and I would expect the container to not call the setter method. but it does call the setter method with the placeholder's literal value and ignoreUnresolvablePlaceholders does not help here.

shalom 02/08/2010 - 22:52

 I have a Spring application that expose Rest API (implements with RestEasy) that deploy on JBoss, The client want to add security - implement by OAuth framework.

 

Does any one have experience with this type of configuration? 

itaip 01/04/2010 - 10:22
Syndicate content