Originally posted by Bear Bibeault:
You didn't show how you are accessing the Card1 property from the JSP. From the error message, I'm assuming you are trying to set it from an int.
Originally posted by Bear Bibeault:
[QB]You didn't show how you are accessing the Card1 property from the JSP. From the error message, I'm assuming you are trying to set it from an int.
org.apache.jasper.JasperException:
Can't find a method to write property 'card1' of
type 'int' in a bean of type 'CardTotal'
public int getCard1 () {
return card1;
}
public int getcard1 () {
return card1;
}
org.apache.jasper.JasperException:
Can't find a method to write property 'card1' of
type 'int' in a bean of type 'CardTotal'
public int getCard1 () {
return card1;
}
public int getcard1 () {
return card1;
}
The invoker servlet lets you run servlets without first making changes to the WEB-INF/web.xml file in your Web application.
The <Context> Element
reloadable: If set to true, causes Tomcat to check for class changes in the WEB-INF/classes/ and WEB-INF/lib directories. If these classes have changed, the application owning these classes will automatically be reloaded. This feature should only be used during development. This setting will cause severe performance degradation, and therefore should be set to false when in a production environment.
The HTTP Connector
bufferSize: Specifies the size, in bytes, of the buffer to be provided for use by input streams created by this connector. Increasing the buffer size can improve performance, at the expense of higher memory usage. The default value is 2048 bytes.
Originally posted by Berciu Ioan:
Hi, I want to write a jdbc driver for an access database and I could use some help (source code or links maybe a tutorial on how to do it).Don't want to use odbc just jdbc to connect to the database.One more question : is it possible to connect to a database just specifing the path and the name of the database ?
Tanks.
Originally posted by Valentin Crettaz:
Nice shot David