Active JAVA Posts

  • When migrating your application from JBoss 4.x to JBoss 5.x, some problems might occur.
  • Below is a list of some of these possible problems.
elad 02/08/2009 - 09:31

Hello again,

 

This time I want to talk about localization (a.k.a. i18n).

As Flex developers, as I assume you already know, all you have to do is create a *.properties file (say Messages.properties) and in it define keys with localized values, like:

columnHeaderName=Name

 

Then, in the main application mxml, you would define the resource bundles:

	<mx:Metadata>
		[ResourceBundle("Messages")]
	</mx:Metadata>

 

And basically you're done. All you need to do to use it, is use the ResourceManager class to access the localized value of the key.

Simple stuff, right?

 

Not so with GWT...

sefi 29/01/2012 - 18:51

Recently, I had to create a custom component that does live filtering on data presented in a grid.

 

If you are reading this series, you probably know how this can be done in Flex. If you don't, a quick google search will probably point you in the right direction. Enough to say that in envolves a custom component to get the search criteria and a filter function on the grid's dataProvider ArrayCollection.

 

I was surprised this is relatively straight forward in GWT (using uiBinder and GXT 3.0)

sefi 15/01/2012 - 21:51

Greeting ,

Just came on board Tikal (did not send yet a picture to lee)

 

I need a messaging queue implementation on tomcat

And I'm thinking of Jboss HornetQ.

 

Any one done it lately ?

 

Thanks,

Alon

alonm 09/01/2012 - 11:05

 Hi

 

I'm  trying to create Solr index from oracle db.

the trick is that i'm using multivalue field in solr, and expect from solr to split the value to multi value field.

here is my data-config.xml

<document name="doc">           
            <entity name="EBAYSE_CORE" transformer="RegexTransformer"
                      query="SELECT id,value1 FROM multivalue" >

                <field column="id" name="id" />
                <field column="value1" name="value1" splitBy="\;" />

            </entity>
        </document>

here is the schema.xml:

itaip 05/01/2012 - 16:30

A new multijob plugin was created by Tikal ALM team.

Using this job you can add full hierarchy of Jenkins jobs that will be executed in sequence or in parallel.

When creating new Jenkins job you have an option to create MultiJob project. This job can define in the Build section phases that contains one job or more. All jobs belong to one phase will be executed in parallel (if there are enough executors on the node), and all jobs in phase 2 will be executed only after jobs in phase 1 are completed etc.

For example we create MultiJob project called jenkins-multijob-inherent that contains 3 multijob phases:

roni 15/09/2011 - 16:00

 I am a Flex developer. Have been for the better part of the last 4 years.

 

Originally I was a Java server side developer. 

sefi 06/12/2011 - 18:43

Every now and again I go to a Tikal customer, who needs to model hierarchical data structure for his domain model. The hierarchy can be a department hierarchy, a category hierarchy , a geographic hierarchy, or any other hierarchy you can think of, that might be needed by the customer. Usually this hierarchy is modeled by a Tree Data Structure.

yanai 26/09/2010 - 12:35

JBoss jBPM is a flexible, extensible workflow management system. jBPM combines easy development of workflow-applications with excellent enterprise application integration (EAI) capabilities. it includes a web-application and a scheduler and can be used in the simplest environment like an ant task and scale up to a clustered J2EE application.
The jBPM enables the creation of a workflow management system that bridges the gap between managers and developers by giving them a common language: the JBoss jBPM Process definition language (jPdl).
This article is an introduction and hopefully will help you start using JBPM easily and fast enough. As a first step you can take a look at this reference jbpm reference guide

 

oded 25/04/2010 - 09:43