Jason Stull

Ranch Hand
+ Follow
since Feb 02, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Jason Stull

I took a Myers-Briggs test once. Yes, at best, tests like this are just for fun. Persons should not be branded with the results by oneself or others. However, I think it's OK to recognize that one prefers visual activities. The question then becomes: What career makes sense where one can exercise this preference and add some collective value?
17 years ago
As they say in hip-hop these days, Rohit, "I feel you". I'm also very visually oriented. I'm also a Java developer and have to visually represent and breakdown all kinds of complex problems. These problems are usually in the form of complex business domains. I think there is a huge need for developers who can visually represent complex business concepts and their relationships (Person, Organization, Role, Product, Order, Facility, ...) UML is a great tool for this whether it is used on a white-board or in a modeling tool. It is true that many of us are "stuck" doing maintenance or refactorings on older code, but I think visual representation is just as critical here as it is in new development.
17 years ago
Hi Ranchers,
I'm going through the Whizlabs simulator right now where an example of "round-robin load balancing" was given. I read somewhere that techniques such as distributing load via round-robin or randomly is load sharing. Alternatively, load balancing is more sophisticated and involves analyzing a given set of servers to see who is least busy then distributing accordingly. Is this splitting hairs or should I be worried about this for the exam?
Many Thanks,
j
Greetings,

It seems that handling non-string data types such as dates and wrapped primitives is akward in Struts. I guess it would be nice if I didn't have to convert all my non-string values to Strings when copying them in to a FormBean and convert them back again when going from the FormBean to the JavaBean. Is this a job for a custom tag, or is this functionality already built in to Struts somewhere? Thanks for listening!
-j
19 years ago
Hi Stan,
Thanks for your reply. So you use a caching/factory system to not only instantiate, but pool your web app resources? If I've interpreted this right, in very general terms, what are the caching and creational strategies used (ie., a hashtable and reflection, etc.)?
Hello Ranchers,

Let's say I have a web application consisting of 20 JavaBeans. Depending on the Use Case in play during a Session, only certain beans will get used. What's the best strategy for constructing the beans, such that only one instance of each will be created per Session. Is it a case where if the bean is asked for, it will be created on-demand? Do I use factories? The beans do have some helpers, such as DAOs. Alternately, do I construct all the object instances (JavaBeans, DAOs, etc.) for the application at logon time? As always, thanks for your time! :-)
-j
Hi Ranchers,

I'm starting work on a web application that will have around 300 users, where around 200 of those users will be using the application at any given time. In terms of scalability, am I at the point where EJBs make sense for this application in terms of scalability? The web application contains some heavy business logic and a lot of CRUD type data access behavior.
Hi Jesse,
I also work in the Midwest. At bigger corporations, I've seen more of an openness to hiring "minorities" (whites are now statically a minority). The problems I see, at least in my locality, are with small companies, especially well established ones in the 'burbs. A lot of the people running these places have kooky, old school race fear. I don't think they want to be racist necessarily, but they can't seem to quell the fear that has been taught to and bred in to them. I come to this from lots of observation. So my advice, for what very little it is worth, would be to focus on large corporations or small/medium companies closer to the urban core. In theory, they should be more progressive in their hiring practices. Sorry if I've offended anybody with my observations. In fairness, I'm another white joe who works in the 'burbs. Additionaly, the advices on a software portfolio, learning hot technologies like Struts, and getting involved in an open source project, are spot on. I would add some kind of volunteer experience, maybe even something where you mentor kids in technology, to that list.
19 years ago
ejb-jar.xml

jboss-cmpjdbc.xml

jboss.xml

add to standardjbosscmp-jdbc.xml (Not pretty, but actually works):

[ April 13, 2004: Message edited by: Jason Stull ]
As long as we are hacking on cmp entity beans. One thing I hate about them is the total lack of flexibility. We have some pretty complex entities and some fairly complicated searches to go along with them. I think that EJBQL still doesn't have enough features. At one time we did do direct mapping of CMP EJBs to db tables. This scheme was dog-slow. And try as hard as we could, we never beat the performance of SessionBean + BMP EJBs + DAO. I'm studying for the SCEA right now, and all the study materials I've come across basically delegate CMP EJBs to cases where, "Data is not complex and performance is not critical".
"Expecting a +ve reply", whahuh???
Could you be more specific about what you are trying to accomplish? MBean configuration from msaccess-service.xml should look like:
Hi Kyle,
A follow-up question. Does direct mapping from cmp bean to db table mean that db tables should be denormalized? I guess I'm just wondering how this approach impacts performance and if granularity is still an issue.
JMS Client Code:

ejb-jar.xml

jboss.xml
Hi Bhaskar,
As long as the MS Access DataSource is bound to JNDI, this example should get you going: