我正在尝试为现有项目添加Maven支持,但没有找到完整的指南。我只是通过创建一个新的基于Maven的项目并将源文件粘贴到源包中来对其进行转换。我也设置了pom xml.Project构建成功。并且运行没有问题。
但是问题是,我想将该项目的动作类方法与另一个常规项目的servlet连接起来。上一个项目(不是maven项目)已成功连接,但是创建的maven项目未连接。
此URL不支持HTTP方法POST
返回此错误。我认为在maven项目创建中可能存在错误。您能帮我解决这个问题吗?
这是我用来连接Maven项目操作类的servlet代码
private String getUrlOfReportModule() throws Exception {
String reportUrl = null;
try {
commonParamManager = new CommonParamManager();
//reportUrl = commonParamManager.getUrlOfReportModule();
reportUrl = "http://localhost:8090/DF_MY_REPORT/";
} catch (Exception ex) {
throw ex;
}
return reportUrl + "checkLoginActionMgt.htm";
}
这是我的jsp代码
$(document).ready(function () {
document.userDetails.action = "${redirectUrl}";
document.userDetails.submit();
});
<form style="display: none" method="POST" name="userDetails" id="userDeatils">
</form>