📄 build.xml
字号:
<?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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -