ffet légalement obligatoire. Étant donné que les email peuvent facilement
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité
pour le contenu fourni.
> Date: Sun, 17 Oct 2010 12:46:22 +
> Subject: Re: Struts, Spring, Hibernate and multiple Sessionfactories
&g
1) In this multi-tenant app, it is OK. Every operation just need to
access one tenant datasource in the thread .2) Thread
local is not appropriate in distributed architecture. sometimes we
should access 2 or more datasourses at the same time in ONE thread.
2010/10/16, Dave Newton
Raymond,
I found a possible solution here:
http://blog.springsource.com/2007/01/23/dynamic-datasource-routing
TenantId is hold in the Struts UserSession and shall be shared with
spring layer. The described solution uses ThreadLocal for this purpose.
Is it possible to provide this tenantId to th
2010/10/16 Raymond He :
> To Li Ying and Dave New ton, multiple datasources is a common
> requirement in large scale e-commerce and telecom application.
I know; that's what I said.
Dave
-
To unsubscribe, e-mail: user-unsubscr..
To Li Ying and Dave New ton, multiple datasources is a common
requirement in large scale e-commerce and telecom application.
I used a data object to table
mapping to do DB routing vertically, pk hashing to route horizontally.
The r
On Fri, Oct 15, 2010 at 11:43 AM, Dave Newton wrote:
> On Fri, Oct 15, 2010 at 12:39 PM, Brian Thompson
> wrote:
>>> Ever had a client that wanted/required their data segregated from
>>> everybody else's (this is not uncommon at all)? Ever wanted to
>> Apparently, it is uncommon. I've never enc
On Fri, Oct 15, 2010 at 12:39 PM, Brian Thompson wrote:
>> Ever had a client that wanted/required their data segregated from
>> everybody else's (this is not uncommon at all)? Ever wanted to
> Apparently, it is uncommon. I've never encountered such a demand.
That... makes it uncommon?!
>> restr
On Fri, Oct 15, 2010 at 10:22 AM, Dave Newton wrote:
>> I'm not sure what reasons there would be to have it make sense
>> to store each entity in its own identically-structured DB.
>
> Ever had a client that wanted/required their data segregated from
> everybody else's (this is not uncommon at all
> I'm not sure what reasons there would be to have it make sense
> to store each entity in its own identically-structured DB.
Ever had a client that wanted/required their data segregated from
everybody else's (this is not uncommon at all)? Ever wanted to
restrict tool access to data without jumpin
On Fri, Oct 15, 2010 at 9:45 AM, Dave Newton wrote:
> That's really difficult to read.
Agreed. More whitespace would be nice, Martin.
>
> On Fri, Oct 15, 2010 at 10:38 AM, Martin Gainty wrote:
>> a database schema represents the entire structure (tables and relationships
>> of
>> those table
That's really difficult to read.
On Fri, Oct 15, 2010 at 10:38 AM, Martin Gainty wrote:
> a database schema represents the entire structure (tables and relationships of
> those tables) of the there is no need for multiple databases when your
> database
> schema contains the persisted entities (ta
Every extend mapp to different injection to what lli ying said
/m/
-Original Message-
From: Eduard Neuwirt
Date: Fri, 15 Oct 2010 16:37:56
To: Struts Users Mailing List;
Subject: Re: Struts, Spring, Hibernate and multiple Sessionfactories
Hi Frans,
would you mind to explain it
I think i don't understand what you want exactly.
Can you tell me what you want to achieve?
And what your code looks like?
2010/10/15 Eduard Neuwirt :
> Hi Li,
>
> thanks for the answer. I didn't get how does it work within the
> ? In this case ist the the question is how to access
> to the app
> Date: Fri, 15 Oct 2010 14:50:17 +0200
> Subject: Struts, Spring, Hibernate and multiple Sessionfactories
> From: eduard.neuw...@googlemail.com
> To: user@struts.apache.org
>
> Hello,
>
> I am looking for an elegant solution for the following situation.
>
> I have a multitenant struts/spr
-
> From: Eduard Neuwirt
> Date: Fri, 15 Oct 2010 16:16:35
> To: Struts Users Mailing List
> Reply-To: "Struts Users Mailing List"
> Subject: Re: Struts, Spring, Hibernate and multiple Sessionfactories
>
> Hi Li,
>
> thanks for the answer. I didn't get
How about make different implementation
So
Tenant1 extends tenanta
Tenant2 extends tenantb
/m/
-Original Message-
From: Eduard Neuwirt
Date: Fri, 15 Oct 2010 16:16:35
To: Struts Users Mailing List
Reply-To: "Struts Users Mailing List"
Subject: Re: Struts, Spring, Hib
Hi Li,
thanks for the answer. I didn't get how does it work within the
struts-spring plugins ? In this case ist the the question is how to access
to the application context directly from struts session. I could not find
any information in the docu.
Regards
Eduard
2010/10/15 Li Ying
> If you
If you want to use multi-DB for multi-tenant (let's say tenant01 and tenant02)
I think you can create config file should likes:
and then, in your java code, you can get different bean instance for
different tenant via [ID],
code looks like:
BeanFactory.getBean("sessionFactory_" + te
I have seen a horizontal partitioning of data using Hibernate that hides
the SessionFactories, etc in a ConfigUtil class. The idea goes something
like this.
The ConfigUtil establishes all SessionFactories and stores them in a map
with their associated identifier (ID, class, whatever you choose) as
We developed a multi-tenant app last year.
But we didn't separate their data into different DB.
Instead, we stored all data in one DB, and add
a [tenant_id] column to all tables to distinguish
which tenant it belong.
I think this is a simpler solution.
When you need to add new tenant,
you can s
Sorry, more explanation is needed... I've got to launch a "batch process"
it's not a batch but it's a long lasting process that could raise a timeout
and tomcat will kill the worker thread... So I've launched a worker of my
own to do the job and inform the user with a progress indicator or the like
Yayo on 02/04/08 20:23, wrote:
I'm developing a struts - spring based application.
I've got actions-delegates-managers and daos and I use the open session in
view filter from hibernate.
In some cases I've got to return lazy results to the user so I've got to
launch a new worker thread and taht
Try to post a stack trace or something more meaningful, but first of
all, as a general architectural guideline, try first to refactor your
code to avoid circular dependencies.
2008/4/2, Yayo <[EMAIL PROTECTED]>:
> Hi,
>
> I'm developing a struts - spring based application.
>
> I've got actions-de
I use a diferent stack, this one: http://ibatis.apache.org/petstore.html
not what you asked for but..
Martin Ravell wrote:
Are there some developers here who use this solution?
Does someone have a good tutorial or sample to indicate? (I've already
seen "Wiring your web applications with Open So
> Are there some developers here who use this solution?
> Does someone have a good tutorial or sample to indicate? (I've already
>seen "Wiring your web applications with Open Source java"..thanks :o))
>
> Thanks for your feedback on this architecture :o)
>
Check out Matt Raible's Equinox projec
generator for the interfaces
when using these 3 framework?
Because, I'm afraid on the number of classes we have to develop to
only retrieve one row in a table!
Thanks for help
- Original Message -
From: Wendy Smoak
To: Struts Users Mailing List
Sent: Wednesday, Novembe
, I'm afraid on the number of classes we have to develop to only
retrieve one row in a table!
Thanks for help
- Original Message -
From: Wendy Smoak
To: Struts Users Mailing List
Sent: Wednesday, November 02, 2005 5:16 PM
Subject: Re: Struts + Spring + Hibernate
On 11/
On 11/2/05, Gaet <[EMAIL PROTECTED]> wrote:
>
>
> Are there some developers here who use this solution?
> Does someone have a good tutorial or sample to indicate? (I've already
> seen "Wiring your web applications with Open Source java"..thanks :o))
>
For the Struts + Spring part, Ted recently pos
28 matches
Mail list logo