jeudi 28 décembre 2017

Java Web App: NetBeans: "1045: The module has not been deployed." Fails on Glassfish and AWS's Tomcat

I used some more complex code, but to simplify everything, I put in very basic code for simplicity sake for y'all to get a better chance of answering my question.

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Testing</title>
    </head>
    <body>
        <h1>Testing</h1>
        <table border="0">
            <thead>
                <tr>
                    <th>
                    <th></th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td><input type="radio" name="1" value="Test1" /></td>
                    <td><input type="radio" name="2" value="Test2" /></th</td>
                </tr>
                <tr>
                    <td><input type="checkbox" name="1" value="ON" /></td>
                    <td><input type="checkbox" name="2" value="OFF" /></td>
                </tr>
            </tbody>
        </table>

    </body>
</html>

Only have one index.jsp file. Made a web project with NetBeans will all the default settings. Running on MacOS Sierra. I've searched all over for the past many hours, and nothing has worked. Like I said in the question, I even uploaded the .war file to AWS's Elastic Beanstalk and it still gives a 404 error.

Thanks for the replies!




Aucun commentaire:

Enregistrer un commentaire