创建无法访问Internet的Spring MVC应用程序

时间:2019-02-13 12:32:45

标签: java spring web weblogic

我需要开发spring mvc应用程序,并将其部署在服务器中。但主要问题是部署服务器无法访问互联网。他们仅需要在内部网络中访问此应用程序。我们可以创建可以在服务器上运行的Spring MVC动态应用程序吗?如何使用SPRING开发此类应用程序。

最终应用程序应作为War文件部署在服务器中。

我已经尝试过使用jar库,但是在servlet-context.xml文件中,它包含访问互联网的这种URL。

<?xml version="1.0" encoding="UTF-8"?>
 <beans:beans 
    xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

如何在脱机服务器上部署这种应用程序。我正在使用weblogic服务器进行部署

0 个答案:

没有答案