有谁知道如何在局域网上实际提供一个JSP网站项目。
我使用Netbeans和玻璃鱼服务器测试我的工程。 我运行 XAMPP Apache 来运行 DBMS 和 MySql 的界面, 用于数据库本身 。
非常感谢!
有谁知道如何在局域网上实际提供一个JSP网站项目。
我使用Netbeans和玻璃鱼服务器测试我的工程。 我运行 XAMPP Apache 来运行 DBMS 和 MySql 的界面, 用于数据库本身 。
非常感谢!
没有 Apache / Xampp 的 JSP 局域网应用程序应该很好。 原因是 Apache 高度优化了静态文件, 您的 GlassFish 服务器不应该承担这个负担 。
您可以在服务器配置中更改集装箱 HTTP 端口( 查看 Glassfish S Document), 或者在某些情况下, 您可能需要启用它 。
将端口从 8080 更改为 80 & amp; 确保防火墙设置正常 。
你该走了
如果您需要与 Apache 合作, 请使用 Tomcat & amp; 使用 Mod_ JK 来制造 Apache - Tomcat 桥 。
I ve got an index.jsp with [snip] <% String name = request.getParameter("name"); String pass = request.getParameter("pass"); String globalname = "webeng"; String globalpass = "2009"; ...
I am using Tomcat to host JSP and using IIS 7.0 to host aspx (C# + .Net 3.5 + VSTS 2008), and I have some session transfer issue from JSP page to ASPX page. JSP page is in one domain and all other ...
I am setting the value(kind of default value) for a drop down select value from action class in a page(given below). When the page loads the value is beig displayed but the other elements of the ...
I have a requirement where in the JSP page itself is created by the user and stored in the database. When viewing results we need to render this JSP to the client, evaluating all tags inside this JSP. ...
I m essentially trying to do the following on a Java/JSP-driven web site: User supplies a password Password is used to build a strongly-encrypted archive file (zip, or anything else) containing a ...
I m setting up an existing application on a new Tomcat 5.5 server connecting to a Postgres database (running on Debian Lenny). When I access it I get a series of stack traces with the following root ...
I have an ArrayList and i am trying to display it in a table ..... ArrayList rows = .... ..... <table cellspacing="1" cellpadding="4" border="3"> <tr> <TH>...
I m trying to deploy a java application to appspot (google appengine). I m new to java, so bear with me. When I run the application locally from eclipse, it runs fine. After uploading it to google ...