How to get a context.xml working with Tomcat and IntelliJ IDEATomcat and JDBC connection poolingHow can I permanently enable line numbers in IntelliJ?Correct way to add external jars (lib/*.jar) to an IntelliJ IDEA projectTomcat-6.0.18, expanded directory structure, datasource in context.xmlMigration Apache Tomcat 6 project with context.xml to GlassFishTomcat 6 doesn't copy my context.xmlHow to set the context path of a web application in Tomcat 7.0Tomcat updates context.xml but should notTomcat 6 and updating context.xml on deploymentcant get .jsp working in apache tomcat 8Tomcat doesn't see my CONTEXT.XML when trying to connect from Servlet also i use IDEA Intellij

Can a College of Swords bard use a Blade Flourish option on an opportunity attack provoked by their own Dissonant Whispers spell?

On a tidally locked planet, would time be quantized?

Hero deduces identity of a killer

Multiplicative persistence

What are the advantages of simplicial model categories over non-simplicial ones?

What happens if you are holding an Iron Flask with a demon inside and walk into an Antimagic Field?

Is this toilet slogan correct usage of the English language?

Why is it that I can sometimes guess the next note?

Do the primes contain an infinite almost arithmetic progression?

Pre-mixing cryogenic fuels and using only one fuel tank

Can the US President recognize Israel’s sovereignty over the Golan Heights for the USA or does that need an act of Congress?

Is there a way to get `mathscr' with lower case letters in pdfLaTeX?

How to cover method return statement in Apex Class?

Non-trope happy ending?

A social experiment. What is the worst that can happen?

How can "mimic phobia" be cured or prevented?

Does malloc reserve more space while allocating memory?

What is Cash Advance APR?

Electoral considerations aside, what are potential benefits, for the US, of policy changes proposed by the tweet recognizing Golan annexation?

15% tax on $7.5k earnings. Is that right?

Why did the EU agree to delay the Brexit deadline?

What is going on with 'gets(stdin)' on the site coderbyte?

Biological Blimps: Propulsion

Plot of a tornado-shaped surface



How to get a context.xml working with Tomcat and IntelliJ IDEA


Tomcat and JDBC connection poolingHow can I permanently enable line numbers in IntelliJ?Correct way to add external jars (lib/*.jar) to an IntelliJ IDEA projectTomcat-6.0.18, expanded directory structure, datasource in context.xmlMigration Apache Tomcat 6 project with context.xml to GlassFishTomcat 6 doesn't copy my context.xmlHow to set the context path of a web application in Tomcat 7.0Tomcat updates context.xml but should notTomcat 6 and updating context.xml on deploymentcant get .jsp working in apache tomcat 8Tomcat doesn't see my CONTEXT.XML when trying to connect from Servlet also i use IDEA Intellij













0















I've been learning about connection pools, and I have gotten one working by using Tomcat's PoolProperties. Now I would like to set one up using a context.xml file with Tomcat and IntelliJ, but I can't get this to work. How is this done?



A new project with a 4.0 Web Application framework can automatically create a web/WEB-INF directory with a web.xml file, but the web/META-INF directory containing a context.xml file is not created. If I do create web/META-INF/context.xml myself through the Tool Window > Project, and I use this to set up a connection pool as shown below, the file seems to be ignored.



This is my guess as to what might be happening, though I'm sure this is filled with errors: A WAR file is a packaged directory that is sent to Tomcat in an arrangement that Tomcat understands. web/WEB-INF/web.xml is a required file that is needed for a variety of reasons, one of which is to set up servlets. web/META-INF/context.xml is optional, and thus by default, IntelliJ does not create it. When a web/META-INF/context.xml is created manually, it must also be included into the WAR file otherwise IntelliJ will not send it to Tomcat.



Even if the previous paragraph is true though, I still have not gotten Tomcat to use context.xml after trying to add it to the WAR. Maybe I didn't add it correctly.



context.xml



<?xml version="1.0" encoding="UTF-8" ?>
<Context>

<Resource name="jdbc/sql_connection_03" auth="Container"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/follow_db_01"
username="root" password="pass"
maxactive="100" maxIdle="30" maxWait="10000"
logAbandoned="true" removeAbandoned="true"
removeAbandonedTimeout="60" type="java.sql.DataSource"/>

</Context>


index.jsp



<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>

<sql:query var="rs" dataSource="jdbc/sql_connection_03">
select ID, Description, PackageSize from products;
</sql:query>

<html>
<head>
<title>Index</title>
</head>
<body>

<c:forEach var="row" items="$rs.rows">
$row.ID<br>
$row.Description<br>
$row.PackageSize<br>
</c:forEach>

</body>
</html>









share|improve this question




























    0















    I've been learning about connection pools, and I have gotten one working by using Tomcat's PoolProperties. Now I would like to set one up using a context.xml file with Tomcat and IntelliJ, but I can't get this to work. How is this done?



    A new project with a 4.0 Web Application framework can automatically create a web/WEB-INF directory with a web.xml file, but the web/META-INF directory containing a context.xml file is not created. If I do create web/META-INF/context.xml myself through the Tool Window > Project, and I use this to set up a connection pool as shown below, the file seems to be ignored.



    This is my guess as to what might be happening, though I'm sure this is filled with errors: A WAR file is a packaged directory that is sent to Tomcat in an arrangement that Tomcat understands. web/WEB-INF/web.xml is a required file that is needed for a variety of reasons, one of which is to set up servlets. web/META-INF/context.xml is optional, and thus by default, IntelliJ does not create it. When a web/META-INF/context.xml is created manually, it must also be included into the WAR file otherwise IntelliJ will not send it to Tomcat.



    Even if the previous paragraph is true though, I still have not gotten Tomcat to use context.xml after trying to add it to the WAR. Maybe I didn't add it correctly.



    context.xml



    <?xml version="1.0" encoding="UTF-8" ?>
    <Context>

    <Resource name="jdbc/sql_connection_03" auth="Container"
    driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/follow_db_01"
    username="root" password="pass"
    maxactive="100" maxIdle="30" maxWait="10000"
    logAbandoned="true" removeAbandoned="true"
    removeAbandonedTimeout="60" type="java.sql.DataSource"/>

    </Context>


    index.jsp



    <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>

    <sql:query var="rs" dataSource="jdbc/sql_connection_03">
    select ID, Description, PackageSize from products;
    </sql:query>

    <html>
    <head>
    <title>Index</title>
    </head>
    <body>

    <c:forEach var="row" items="$rs.rows">
    $row.ID<br>
    $row.Description<br>
    $row.PackageSize<br>
    </c:forEach>

    </body>
    </html>









    share|improve this question


























      0












      0








      0








      I've been learning about connection pools, and I have gotten one working by using Tomcat's PoolProperties. Now I would like to set one up using a context.xml file with Tomcat and IntelliJ, but I can't get this to work. How is this done?



      A new project with a 4.0 Web Application framework can automatically create a web/WEB-INF directory with a web.xml file, but the web/META-INF directory containing a context.xml file is not created. If I do create web/META-INF/context.xml myself through the Tool Window > Project, and I use this to set up a connection pool as shown below, the file seems to be ignored.



      This is my guess as to what might be happening, though I'm sure this is filled with errors: A WAR file is a packaged directory that is sent to Tomcat in an arrangement that Tomcat understands. web/WEB-INF/web.xml is a required file that is needed for a variety of reasons, one of which is to set up servlets. web/META-INF/context.xml is optional, and thus by default, IntelliJ does not create it. When a web/META-INF/context.xml is created manually, it must also be included into the WAR file otherwise IntelliJ will not send it to Tomcat.



      Even if the previous paragraph is true though, I still have not gotten Tomcat to use context.xml after trying to add it to the WAR. Maybe I didn't add it correctly.



      context.xml



      <?xml version="1.0" encoding="UTF-8" ?>
      <Context>

      <Resource name="jdbc/sql_connection_03" auth="Container"
      driverClassName="com.mysql.jdbc.Driver"
      url="jdbc:mysql://localhost:3306/follow_db_01"
      username="root" password="pass"
      maxactive="100" maxIdle="30" maxWait="10000"
      logAbandoned="true" removeAbandoned="true"
      removeAbandonedTimeout="60" type="java.sql.DataSource"/>

      </Context>


      index.jsp



      <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
      <%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
      <%@ page contentType="text/html;charset=UTF-8" language="java" %>

      <sql:query var="rs" dataSource="jdbc/sql_connection_03">
      select ID, Description, PackageSize from products;
      </sql:query>

      <html>
      <head>
      <title>Index</title>
      </head>
      <body>

      <c:forEach var="row" items="$rs.rows">
      $row.ID<br>
      $row.Description<br>
      $row.PackageSize<br>
      </c:forEach>

      </body>
      </html>









      share|improve this question
















      I've been learning about connection pools, and I have gotten one working by using Tomcat's PoolProperties. Now I would like to set one up using a context.xml file with Tomcat and IntelliJ, but I can't get this to work. How is this done?



      A new project with a 4.0 Web Application framework can automatically create a web/WEB-INF directory with a web.xml file, but the web/META-INF directory containing a context.xml file is not created. If I do create web/META-INF/context.xml myself through the Tool Window > Project, and I use this to set up a connection pool as shown below, the file seems to be ignored.



      This is my guess as to what might be happening, though I'm sure this is filled with errors: A WAR file is a packaged directory that is sent to Tomcat in an arrangement that Tomcat understands. web/WEB-INF/web.xml is a required file that is needed for a variety of reasons, one of which is to set up servlets. web/META-INF/context.xml is optional, and thus by default, IntelliJ does not create it. When a web/META-INF/context.xml is created manually, it must also be included into the WAR file otherwise IntelliJ will not send it to Tomcat.



      Even if the previous paragraph is true though, I still have not gotten Tomcat to use context.xml after trying to add it to the WAR. Maybe I didn't add it correctly.



      context.xml



      <?xml version="1.0" encoding="UTF-8" ?>
      <Context>

      <Resource name="jdbc/sql_connection_03" auth="Container"
      driverClassName="com.mysql.jdbc.Driver"
      url="jdbc:mysql://localhost:3306/follow_db_01"
      username="root" password="pass"
      maxactive="100" maxIdle="30" maxWait="10000"
      logAbandoned="true" removeAbandoned="true"
      removeAbandonedTimeout="60" type="java.sql.DataSource"/>

      </Context>


      index.jsp



      <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
      <%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
      <%@ page contentType="text/html;charset=UTF-8" language="java" %>

      <sql:query var="rs" dataSource="jdbc/sql_connection_03">
      select ID, Description, PackageSize from products;
      </sql:query>

      <html>
      <head>
      <title>Index</title>
      </head>
      <body>

      <c:forEach var="row" items="$rs.rows">
      $row.ID<br>
      $row.Description<br>
      $row.PackageSize<br>
      </c:forEach>

      </body>
      </html>






      java tomcat intellij-idea connection-pooling context.xml






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 2:46







      Jack J

















      asked Mar 8 at 2:37









      Jack JJack J

      138415




      138415






















          0






          active

          oldest

          votes











          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%2f55055932%2fhow-to-get-a-context-xml-working-with-tomcat-and-intellij-idea%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          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%2f55055932%2fhow-to-get-a-context-xml-working-with-tomcat-and-intellij-idea%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

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived