Struts.xmlの用途
struts.xml」では、URL、アクションクラス、JSPの紐づけ設定を行います。
struts.xmlの設定
struts.xml設定例
<Resource
name=”jdbc/mysql”
auth=”Container”
type=”javax.sql.DataSource”
username=”[username]”
password=”[password]”
driverClassName=”com.mysql.jdbc.Driver”
url=”jdbc:mysql://localhost:3306/xxxx?useUnicode=true&characterEncoding=sjis”
maxActive=”8″ maxIdle=”8″ />
</Context>