与title相同,如何使用Netbeans IDE安装activejdbc for java?有人能帮我吗?
- 创建新的Netbeans项目
- 添加依赖库:
- 右键单击新建项目->属性->库
- 从库示例中添加"编译"库:https://github.com/javalite/ant-example/tree/master/lib
- 从生成时库示例中添加"处理器"库:https://github.com/javalite/ant-example/tree/master/build_time_libs
- 关闭
- 单击"文件"选项卡并打开build.xml
- 添加-编译后目标:
<target name="-post-compile">
<java classname="org.javalite.instrumentation.Main" failonerror="true">
<sysproperty key="outputDirectory" value="${build.classes.dir}"></sysproperty>
<classpath>
<pathelement path="${build.classes.dir}">
<pathelement path="${javac.classpath}">
<pathelement path="${javac.processorpath}">
</pathelement></pathelement></pathelement></classpath>
</java>
</target>
- 保存并关闭文件
如果您正在从Netbeans运行项目,您需要执行额外的步骤:
右键单击项目->属性->编译并取消选中"保存时编译"