JSP Out.Println() Cannot Resolved, Project Created With WebApp Archteype of Maven












1















I'm practicing Servlet/JSP following a demo on youtube. I have created the project with maven, using webapp archetype.



My servlet dependency in pom.xml file:



  <dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>


My JSP file:



<%@ page import="model.Alien" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>

<%
Alien a1 = (Alien) request.getAttribute("alien");
out.println(a1);
%>

</body>
</html>


My project structure:



project_directory_structure



Alien is a simple POJO and GetAlienController has my Servlet which dispatches to showAlien.jsp. I didn't use web.xml, I'm using annotations.



The problem is, getAttribute() method of request is perfectly resolved but println() method of out is not resolved. Actually, none of the out methods are resolved. I tried copy servlet jar to webapp/lib and web-inf/lib directories also. Yet these didn't solve the problem.



In another project, I didn't use any Maven and used Intellij's Web Application prototype to create project. In this one, I didn't encounter a problem like this.



How can I solve this problem? I'm sure I'm putting servlet dependency to a wrong folder but still I couldn't solve it.



Please don't suggest me "don't write java code into JSP". It's just a demo. I'm trying to learn basics.










share|improve this question



























    1















    I'm practicing Servlet/JSP following a demo on youtube. I have created the project with maven, using webapp archetype.



    My servlet dependency in pom.xml file:



      <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.1.0</version>
    <scope>provided</scope>
    </dependency>


    My JSP file:



    <%@ page import="model.Alien" %>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
    <title>Title</title>
    </head>
    <body>

    <%
    Alien a1 = (Alien) request.getAttribute("alien");
    out.println(a1);
    %>

    </body>
    </html>


    My project structure:



    project_directory_structure



    Alien is a simple POJO and GetAlienController has my Servlet which dispatches to showAlien.jsp. I didn't use web.xml, I'm using annotations.



    The problem is, getAttribute() method of request is perfectly resolved but println() method of out is not resolved. Actually, none of the out methods are resolved. I tried copy servlet jar to webapp/lib and web-inf/lib directories also. Yet these didn't solve the problem.



    In another project, I didn't use any Maven and used Intellij's Web Application prototype to create project. In this one, I didn't encounter a problem like this.



    How can I solve this problem? I'm sure I'm putting servlet dependency to a wrong folder but still I couldn't solve it.



    Please don't suggest me "don't write java code into JSP". It's just a demo. I'm trying to learn basics.










    share|improve this question

























      1












      1








      1








      I'm practicing Servlet/JSP following a demo on youtube. I have created the project with maven, using webapp archetype.



      My servlet dependency in pom.xml file:



        <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1.0</version>
      <scope>provided</scope>
      </dependency>


      My JSP file:



      <%@ page import="model.Alien" %>
      <%@ page contentType="text/html;charset=UTF-8" language="java" %>
      <html>
      <head>
      <title>Title</title>
      </head>
      <body>

      <%
      Alien a1 = (Alien) request.getAttribute("alien");
      out.println(a1);
      %>

      </body>
      </html>


      My project structure:



      project_directory_structure



      Alien is a simple POJO and GetAlienController has my Servlet which dispatches to showAlien.jsp. I didn't use web.xml, I'm using annotations.



      The problem is, getAttribute() method of request is perfectly resolved but println() method of out is not resolved. Actually, none of the out methods are resolved. I tried copy servlet jar to webapp/lib and web-inf/lib directories also. Yet these didn't solve the problem.



      In another project, I didn't use any Maven and used Intellij's Web Application prototype to create project. In this one, I didn't encounter a problem like this.



      How can I solve this problem? I'm sure I'm putting servlet dependency to a wrong folder but still I couldn't solve it.



      Please don't suggest me "don't write java code into JSP". It's just a demo. I'm trying to learn basics.










      share|improve this question














      I'm practicing Servlet/JSP following a demo on youtube. I have created the project with maven, using webapp archetype.



      My servlet dependency in pom.xml file:



        <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1.0</version>
      <scope>provided</scope>
      </dependency>


      My JSP file:



      <%@ page import="model.Alien" %>
      <%@ page contentType="text/html;charset=UTF-8" language="java" %>
      <html>
      <head>
      <title>Title</title>
      </head>
      <body>

      <%
      Alien a1 = (Alien) request.getAttribute("alien");
      out.println(a1);
      %>

      </body>
      </html>


      My project structure:



      project_directory_structure



      Alien is a simple POJO and GetAlienController has my Servlet which dispatches to showAlien.jsp. I didn't use web.xml, I'm using annotations.



      The problem is, getAttribute() method of request is perfectly resolved but println() method of out is not resolved. Actually, none of the out methods are resolved. I tried copy servlet jar to webapp/lib and web-inf/lib directories also. Yet these didn't solve the problem.



      In another project, I didn't use any Maven and used Intellij's Web Application prototype to create project. In this one, I didn't encounter a problem like this.



      How can I solve this problem? I'm sure I'm putting servlet dependency to a wrong folder but still I couldn't solve it.



      Please don't suggest me "don't write java code into JSP". It's just a demo. I'm trying to learn basics.







      java maven jsp servlets intellij-idea






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 14 '18 at 15:05









      MelihMelih

      8713




      8713
























          1 Answer
          1






          active

          oldest

          votes


















          1














          I've solved it by adding another dependency to pom.xml:



            <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
          <dependency>
          <groupId>javax.servlet.jsp</groupId>
          <artifactId>javax.servlet.jsp-api</artifactId>
          <version>2.3.1</version>
          <scope>provided</scope>
          </dependency>





          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53303213%2fjsp-out-println-cannot-resolved-project-created-with-webapp-archteype-of-mave%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            I've solved it by adding another dependency to pom.xml:



              <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
            <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>javax.servlet.jsp-api</artifactId>
            <version>2.3.1</version>
            <scope>provided</scope>
            </dependency>





            share|improve this answer




























              1














              I've solved it by adding another dependency to pom.xml:



                <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
              <dependency>
              <groupId>javax.servlet.jsp</groupId>
              <artifactId>javax.servlet.jsp-api</artifactId>
              <version>2.3.1</version>
              <scope>provided</scope>
              </dependency>





              share|improve this answer


























                1












                1








                1







                I've solved it by adding another dependency to pom.xml:



                  <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
                <dependency>
                <groupId>javax.servlet.jsp</groupId>
                <artifactId>javax.servlet.jsp-api</artifactId>
                <version>2.3.1</version>
                <scope>provided</scope>
                </dependency>





                share|improve this answer













                I've solved it by adding another dependency to pom.xml:



                  <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
                <dependency>
                <groupId>javax.servlet.jsp</groupId>
                <artifactId>javax.servlet.jsp-api</artifactId>
                <version>2.3.1</version>
                <scope>provided</scope>
                </dependency>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 14 '18 at 16:27









                MelihMelih

                8713




                8713
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53303213%2fjsp-out-println-cannot-resolved-project-created-with-webapp-archteype-of-mave%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Xamarin.iOS Cant Deploy on Iphone

                    Glorious Revolution

                    Dulmage-Mendelsohn matrix decomposition in Python