<?xml version="1.0" encoding="UTF-8"?>











<rss version="2.0" xmlns:jf="http://www.jivesoftware.com/xmlns/jiveforums/rss">



<channel>
    <title>Support Forums: Message List - Web Application Without EJBS,How to make it scalable.</title>
    <link>http://www.theserverside.com</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    
        <generator>Jive Forums Silver 5.5.30 (www.jivesoftware.com)</generator>
    
    <pubDate>Wed, 19 Jun 2013 01:16:00 -0400</pubDate>


    <item>

        <title>scalable Transactions for Web Applications for web applications</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37119</link>

        

        
            <description><![CDATA[<P>Dear Sir,</P><P>   I'm doing a ME project "Scalable Transactions for Web Applications in Cloud" I'm using the same concepts of scalable LTMs and TPS. Pls help me how to create scalable LTMs</P><P><br/></P><P>Nitin Dhawas</P>]]></description>
        

        <pubDate>Sat, 17 Apr 2010 07:55:26 -0400</pubDate>

        

        <jf:creationDate>Sat, 17 Apr 2010 07:55:26 -0400</jf:creationDate>
        <jf:modificationDate>Sat, 17 Apr 2010 07:55:26 -0400</jf:modificationDate>
        <jf:date>Apr 17, 2010</jf:date>
        <jf:author>nitinaayushi</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Web Application Without EJBS,How to make it scalable.</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37119</link>

        

        
            <description><![CDATA[<blockquote>There are a lot inserts that i have to perform.Currently what i have done is,i have written a helper class where i invoke a single method which does all the inserts.I have marked this method as 'Synchronized'.I think for a limited number of...]]></description>
        

        <pubDate>Wed, 09 Nov 2005 17:30:38 -0500</pubDate>

        

        <jf:creationDate>Wed, 09 Nov 2005 17:30:38 -0500</jf:creationDate>
        <jf:modificationDate>Wed, 09 Nov 2005 17:30:38 -0500</jf:modificationDate>
        <jf:date>Nov 9, 2005</jf:date>
        <jf:author>Jose Ramon Huerga Ayuso</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Good Database Driver</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37119</link>

        

        
            <description><![CDATA[A good database driver with pooling will solve your issues. It will include transactions and pool your connections. <br><br>If you are opening a single connection and trying to 'pipe' everything through it, you will have problems scaling. This is what...]]></description>
        

        <pubDate>Fri, 28 Oct 2005 08:26:59 -0400</pubDate>

        

        <jf:creationDate>Fri, 28 Oct 2005 08:26:59 -0400</jf:creationDate>
        <jf:modificationDate>Fri, 28 Oct 2005 08:26:59 -0400</jf:modificationDate>
        <jf:date>Oct 28, 2005</jf:date>
        <jf:author>Mica Cooper</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Web Application Without EJBS,How to make it scalable.</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37119</link>

        

        
            <description><![CDATA[If you're just using one resource (database) there is no need to use JTA and/or TransactionManager. Local transactions should do. You can use local transactions manually (connection.setAutoCommit(false), conncetion.commit()/rollback()) or use almost any...]]></description>
        

        <pubDate>Thu, 27 Oct 2005 23:33:11 -0400</pubDate>

        

        <jf:creationDate>Thu, 27 Oct 2005 23:33:11 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 27 Oct 2005 23:33:11 -0400</jf:modificationDate>
        <jf:date>Oct 27, 2005</jf:date>
        <jf:author>Dmitri Maximovich</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Web Application Without EJBS,How to make it scalable.</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37119</link>

        

        
            <description><![CDATA[Thanks for the suggestion,i will try using the spring framework.]]></description>
        

        <pubDate>Mon, 24 Oct 2005 04:31:26 -0400</pubDate>

        

        <jf:creationDate>Mon, 24 Oct 2005 04:31:26 -0400</jf:creationDate>
        <jf:modificationDate>Mon, 24 Oct 2005 04:31:26 -0400</jf:modificationDate>
        <jf:date>Oct 24, 2005</jf:date>
        <jf:author>Rajat M</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Web Application Without EJBS,How to make it scalable.</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37119</link>

        

        
            <description><![CDATA[You could try using Spring's AOP abilities for transactions.]]></description>
        

        <pubDate>Thu, 20 Oct 2005 10:50:54 -0400</pubDate>

        

        <jf:creationDate>Thu, 20 Oct 2005 10:50:54 -0400</jf:creationDate>
        <jf:modificationDate>Thu, 20 Oct 2005 10:50:54 -0400</jf:modificationDate>
        <jf:date>Oct 20, 2005</jf:date>
        <jf:author>Rich Hill</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>Web Application Without EJBS,How to make it scalable.</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=37119</link>

        

        
            <description><![CDATA[Hi,<br>&nbsp;&nbsp;I am currently working on a project to create a web application without using EJBs.This application currently runs on tomcat.At the backend i am using a MySQL database.There are a lot inserts that i have to perform.Currently what i...]]></description>
        

        <pubDate>Sat, 15 Oct 2005 00:35:58 -0400</pubDate>

        

        <jf:creationDate>Sat, 15 Oct 2005 00:35:58 -0400</jf:creationDate>
        <jf:modificationDate>Sat, 15 Oct 2005 00:35:58 -0400</jf:modificationDate>
        <jf:date>Oct 15, 2005</jf:date>
        <jf:author>Rajat M</jf:author>
        <jf:replyCount>7</jf:replyCount>
    </item>



</channel>
</rss>

