build.xml
来自「Spring简单的小例子」· XML 代码 · 共 27 行
XML
27 行
<?xml version="1.0"?>
<project name="spring" basedir="." default="compile">
<path id="classpath">
<fileset dir="..\..\lib">
<include name="*.jar"/>
</fileset>
<pathelement path="."/>
</path>
<target name="compile" description="Compile all source code">
<javac destdir="." debug="true"
deprecation="false" optimize="false" failonerror="true">
<src path="."/>
<classpath refid="classpath"/>
</javac>
</target>
<target name="run" description="run the main class" depends="compile">
<java classname="lee.SpringTest" fork="yes" failonerror="true">
<classpath refid="classpath"/>
</java>
</target>
</project>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?