Hi all..
I'm playing around with the Web4J framework and can get it to run just fine outside of the IDE per the tutorial on that site. However, I'm not sure what to do with the following XML tomcat config material --
<!-- Example of a Tomcat configuration file for this application. -->
<!-- The 'YOUR_MYSQL_...' items refer to a MySQL account. The given values are phony. Please change them. -->
<!-- Assumes MySQL is running on the default port 3306. Please change if necessary. -->
<!-- Maps a URL context under Tomcat to a location on your file system. Please change 'docBase': -->
<Context docBase="/Users/nrf/projects/electricity" reloadable="true">
<Resource
name="jdbc/electricity"
auth="Container"
type="javax.sql.DataSource"
username="test"
password="test"
driverClassName="org.postgresql.Driver"
url=" jdbc:postgresql://localhost:5432/electricity?useServerPrepStmts=false"
maxActive="10"
maxIdle="5"
/>
</Context>
In the standalone tutorial, the reader is responsible for installing the above xml file into the tomcat directory [TOMCAT_HOME]\conf\Catalina\localhost\
If I'm using Idea Ultimate, do I need to still do that by hand or is that something the IDE does for me?