Using IntelliJ 9, Tomcat 6, maven project (pom.xml based).
Running the application returns the error, not sure if it is a tomcat deployment issue or not.
Strange thing, when I hit the refresh button on the browser, I don't see any errors in IntelliJ's server output window.
I have tomcat setup with intelliJ to use the war-exploded artifact.
Does Tomcat just use the directory under my projects?
Does it modify tomcat's server xml to do this? Or is this does on the fly somehow?
I want to know what files get run with tomcat runs, for some reason I'm getting a 404 at:
http://localhost:8080/
I just setup a simple Spring MVC application, I have a HomeController:
@Controller
public class HomeController {
@RequestMapping("/")
public String Index() {
return "hello, world";
}
}
web.xml:
<servlet>
<servlet-name>mymvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/src/main/web/WEB-INF/spring/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mymvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
servlet-context.xml
<context:component-scan base-package="com.debugging" />
<!-- Enables the Spring MVC @Controller programming model -->
<mvc:annotation-driven />
Update
My exploded war looks like:
/mymvc_war_exploded
/mymvc_war_exploded/web-inf (it has classes folder and inside is my homecontroller.class)
/mymvc_war_exploded/lib
I don't see my views folder, or my .xml files anywhere.