在我的项目中,我有/ lib和/ WEB-INF文件夹。 我需要将两个文件夹(或带有子文件夹的文件夹中的.jar文件)添加到类路径中。
我尝试过类似的东西,但它没有用:
<property name="lib.dir" value="lib"/>
<property name="webinf.dir" value="WEB-INF"/>
<path id="classpath">
<fileset dir="${lib.dir}">
<include name="${lib.dir}/**/*.jar ${webinf.dir}/**/*.jar"/>
</fileset>
</path>
答案 0 :(得分:1)
你可以试试这个:
webContent\WEB-INF\lib
但是,web-lib目录不应该像web-inf.dir
那样吗?
如果是,那么<property name="web-inf.dir" value="webContent/WEB-INF/lib" />
应为:
// to select records
SELECT *.u FROM, h.height_inch user as u join height as h on u.height_cm =h.height_cm
WHERE u.user_id = 2 AND ...;
//for display in php
foreach($all_records AS $key => $val) {
echo $val['height_inch'];
}