我尝试在pom.xml中添加以下内容
$("A").keydown(function(event){if(event.keyCode == <TABCODE>) {event.preventDefault();$("B").prop("disabled", false);$("B").focus();}});
但没有工作。
我发现的更多信息:
它可能与spring boot maven插件有关。 https://docs.spring.io/spring-boot/docs/current/maven-plugin/它不包括范围&#34; system&#34; lib时建立jar。
先谢谢你。
答案 0 :(得分:0)
我建议您使用以下命令将文件安装到本地存储库。而不是使用系统路径(因为当有多个开发人员(具有不同操作系统的更复杂性)时很难管理路径)
mvn install:install-file -Dfile=<your jar file location\file name>.jar -DgroupId=com.kp<groupId> -DartifactId={your custom artifactId} -Dversion={version} -Dpackaging=jar
我使用上面的方法来使用oracle&#39; s ojdbc.jar,它不是Maven Repo的一部分。