Runtime Java Stack

Toolkit

Image by Neil T via Flickr

I have been developing java application for more then 6 years. Most of these years I have used and evaluated open source projects. Here I’ll try to explain my open source java stack. Read more

right team formation

Soccer Team

Image by Jim Rees via Flickr

hi again,

yesterday when I was surfing some software blogs I have came across something that really hits me: The 12 Best Questions for Team Members. (nice blog).In fact the goal of the questions is “your team’s motivation” !!!

No one has ever asked me these nice questions for several years. maybe this is why I am unrest now. Read more

working in a datamine

Miner in a mine of the

Image via Wikipedia

For the last few weeks I am working as a data miner :(
This is a really hard work to do. In fact for me it is even harder.

java developer != DBA

Think of a domain that you know totally nothing since it is a new job and a new domain to me. Read more

Configure Apache:virtual host, mod_proxy and mod_proxy_ajp

Icon from Nuvola icon theme for KDE 3.x.

Image via Wikipedia

Once you configured your java application server and apache everything is fine until you want to host your another domain at the same server.

Read more

repost my old blogs at blogspot

Old Books, New Light

I reposted my old blogs at altuure.blogspot.com:

OSWorkflow as Object State Machine

Who are you building for?

URI Encoding for tomcat 5.5.X

moved to postgres

‘Too many open files’ but what are they?

when do not generate code !

anti-JSF thoughts

moving to my notebook :)

maven profiles

Reblog this post [with Zemanta]

maven profiles

Apache Maven

Image via Wikipedia

Maven profiles enable your pom to build your project with different build options .

Here I tried to overwrite some default configuration files with profile specific configuration Read more

Object Model vs Database Schema Design

Example of wallpaper group type p3. Computer-e...

Image via Wikipedia

In fact the question is:

how do you think, with zeroes and ones or with meaningful words ?

You start a new project, read some analysis join some meetings. And you are about to start making a design.
What you have in your mind ? Read more

Re:SpringSource Acquires G2One Inc.

Biting one's lip can be a physical manifestati...

Image via Wikipedia

Here comes another worried man: me :(

  • will spring gain more weight ?
  • its interoperability?
  • will grails become appfuse 2008 ?
  • what will we change when spring is not only ruler but also owner of the frameworks ?

another worried man http://java.dzone.com/news/groovy-grails-springsource-ini

http://www.springsource.com/g2one

Reblog this post [with Zemanta]

tomcat port configuration

Apache Tomcat

Image via Wikipedia

There are three standard port types for a single tomcat configuration:

  • HTTP: (default:8080) your http connector
  • AJP :( default: 8009)  tomcat ajp connection port
  • SHUTDOWN (default:8109 ): tomcat shutdown command listener port
  • HTTPS (default: 8443/optional): tomcat https port listener Read more

Quartz Concurrent Job execution-StatefulJob

To prevent concurrent job execution for long running jobs, you should implement org.quartz.StatefulJob which is just a marker interface. By this interface quartz understands and waits until it finishes it’s execution.

In other words, it is same with java synchronized keyword :)


public MyOnlySingleThreadJob implements StatefulJob {

}

ref:quartz project

Reblog this post [with Zemanta]