初始是一个登录界面。
然后如果网络环境能连外网就可以登录。否则点登录按钮没任何反映。在可以连外网环境中抓包 发现他在访问springframework官网。 如果不是外网环境则会报找不到Spring中的ApplicationContext 类。 但其实在jnlp文件的配置中third_party.jar 里是有spring的相关类的。<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+"
codebase="http://10.87.35.74:18080/SFCS_WEB/gui_client/"
href="sfcs_client.jnlp">
<information>
<title>SFCS Client</title>
<vendor>MRS CPD</vendor>
<description>SFCS Client</description>
<homepage
href="http://java.sun.com/docs/books/tutorial/deployment/webstart/running.html" />
<description kind="short">SFCS Client</description>
 <icon href="./images/logo.jpg"/> 
<shortcut online="true">
<desktop />
<menu submenu="SFCS Client"/>
</shortcut>
</information>
<security>
<all-permissions />
</security> <resources>
<jar href="sfcs.jar" main="true" />
<jar href="lib/third_party.jar" download="eager" main="false" />
<jar href="lib/struts.jar" download="eager" main="false" />
<jar href="lib/oscache-2.4.1.jar" download="eager" main="false" />
<jar href="lib/commons-lang-2.3.jar" download="eager" main="false" />
<j2se version="1.6+"
href="http://java.sun.com/products/autodl/j2se"
java-vm-args="-XstartOnFirstThread" />
</resources>
<application-desc main-class="sfcs.client.auth.LoginForm" />
</jnlp>