使用IBCS虚拟专线远程访问公司内部ERP系统,主要是为满足不断出差员工的需要,方便的提供外部的访问。即员工出差在外,可以通过浏览器很方便的访问到内部的ERP系统。
IBCS虚拟专线(IBCS Cloud Virtual Line)是一种IP专线技术,它基于二层网络架构实现给本地服务器主机分配一个独享的固定的IP, 支持获取源访问IP,和物理专线一样效果,可用于建设本地数据中心、业务后台。
使用虚拟专线用户省去了每年租用上云所需的昂贵云服务资源(如数据库、带宽、硬盘),完全使用本地的数据中心环境,并且和云服务器一样可以获取访问者真实IP,IBCS虚拟专线给本地服务器提供固定的独享公网IP服务价格较低,而云服务器更适用于提供计算和存储资源的云服务价格较高。
IBCS官网: https://www.ibcs.net.cn/
帮助企业搭建本地数据中心-为企业提供公网IP服务
可在企业内部-搭建多种应用项目,例如:ERP、Mysql、视频监控服务,等
企业可以实现虚拟化应用自由,一台硬件服务器可以虚拟出多台,虚拟主机,运行不同业务。
大大减少企业的成本支出。
也可以实现:本地搭建WEB服务:
以下是一个简单的 Java Web 程序示例,包含一个简单的登陆页面和一个欢迎页面。
首先,我们需要创建一个 Maven Web 项目,然后在 pom.xml 文件中添加以下依赖项
<!-- Servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<!-- JSP API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
接下来,创建一个名为 LoginServlet 的 Servlet,代码如下:
@WebServlet("/login")
public class LoginServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String username = request.getParameter("username");
String password = request.getParameter("password");
if(username.equals("admin") && password.equals("123456")) {
HttpSession session = request.getSession();
session.setAttribute("username", username);
response.sendRedirect("welcome");
} else {
request.setAttribute("message", "Invalid username or password.");
request.getRequestDispatcher("login.jsp").forward(request, response);
}
}
}
该 Servlet 处理 POST 请求,从请求参数中获取用户名和密码,然后检查它们是否正确。如果验证通过,该 Servlet 将用户名存储在 HttpSession 中,然后重定向到欢迎页面。否则,该 Servlet 将错误消息添加到请求属性中,然后转发到登录页面。
接下来,创建一个名为 WelcomeServlet 的 Servlet,代码如下:
@WebServlet("/welcome")
public class WelcomeServlet extends HttpServlet {
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
HttpSession session = request.getSession();
String username = (String) session.getAttribute("username");
if(username != null) {
request.setAttribute("username", username);
request.getRequestDispatcher("welcome.jsp").forward(request, response);
} else {
response.sendRedirect("login.jsp");
}
}
}
该 Servlet 处理 GET 请求,从 HttpSession 中获取用户名,然后将其添加到请求属性中,并转发到欢迎页面。如果 HttpSession 中没有存储用户名,该 Servlet 将重定向到登录页面。
最后,创建 login.jsp 和 welcome.jsp JSP 页面,代码如下:
login.jsp
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<body>
<h1>Login</h1>
<form method="POST" action="login">
<p>
<label>Username:</label>
<input type="text" name="username" />
</p>
<p>
<label>Password:</label>
<input type="password" name="password" />
</p>
<p>
<input type="submit" value="Login" />
</p>
<p style="color:red;">
${message}
</p>
</form>
</body>
</html>
welcome.jsp
<!DOCTYPE html>
<html>
<head>
<title>Welcome</title>
</head>
<body>
<h1>Welcome, ${username}!</h1>
<p>
<a href="logout