This has nothing to do with WebLogic. It has to do with your Oracle Client Setup. Run Net8 Assistant and promote ONames higher than TNames in the your profile.
Hole in Tomcat 4.X allows the source code for JSPs to be viewed.
Check here for more details and solutions:
http://online.securityfocus.com/archive/1/292936/2002-09-22/2002-09-28/0
You don't need to retrieve all the columns to fill the DTO. Just fill the columns that you need. Though I would argue that you should fill everything. Do not performance-tune an application until you have determined performance is an issue.
I feel your coupling concern is a weak argument...
Create a data object to model your database table and then create an ArrayList of these data objects? This is the standard way to deal with this problem. These data objects are typically referred to in J2EE as Data Transfer Objects or DTOs.
Take this table:
table item {
id number primary...
What he is really saying is that he wants you to know about NIO, which was just added in J2SE 1.4. Check out this article: http://developer.java.sun.com/developer/technicalArticles/releases/nio/ and then start browsing the API.
Don't worry, you'll do fine. Of course, I don't really know that...
A Vector is not the same to a linked list. A Vector is internally based upon an array. This means a Vector allocates chunks of memory from the heap at a time. If you add more elements than the internal array can hold then Vector creates a new array of twice the original size, copies the...
Don't make the mistake of assuming that their can't be memory leaks in Java Applications. Memory leaks in Java are just much more subtle. The garbage collector only reclaims memory from objects that are no longer actively referenced. Memory leaks in Java result from a central point never...
Your problem is coming from the fact that Search.readTokens is incorrect. You define the method as returning a String array, which doesn't seem like what you want, yet in the method you define a String array and initialize it as an int array. This is obviously never going to compile.
I think...
Moving from ASP to JSP will be pretty straight-forward with the exception of two things:
1) If you are using custom COM objects in your ASP pages then these will need to be rewritten as Java objects. If you are using third-party COM components then you will definitely have to do some research...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.