Now with @Spatials working on class level with test case :

@Spatials({
	@Spatial(name="home",  spatialMode = SpatialMode.GRID),
	@Spatial(name="work",  spatialMode = SpatialMode.GRID)
		})
@Entity
@Indexed
public class UserEx {

	@Id
	Integer id;

	@Latitude(spatialName="home")
	Double homeLatitude;

	@Longitude(spatialName="home")
	Double homeLongitude;

	@Latitude(spatialName="work")
	Double workLatitude;

	@Longitude(spatialName="work")
	Double workLongitude;
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira