You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
I'm running into a similar issue as found at the bottom of: #80
When I run tomcatRun, it successfully kicks off the server, but when I go to the server's URL, I get a 404 "The requested resource is not available" error. When I run tomcatRunWar, everything works as expected. Any idea why this happens? I've seen a few folks run into the same issue, but no solution as of yet.
It's likely that newer versions of Tomcat 7 changed the internal behavior. This might be solely an issue with their implementation. Would you be interested in looking into it?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm running into a similar issue as found at the bottom of: #80
When I run tomcatRun, it successfully kicks off the server, but when I go to the server's URL, I get a 404 "The requested resource is not available" error. When I run tomcatRunWar, everything works as expected. Any idea why this happens? I've seen a few folks run into the same issue, but no solution as of yet.
I've included my build.gradle below
apply plugin: 'war'
apply plugin: 'com.bmuschko.tomcat'
apply plugin: 'java'
apply plugin: 'propdeps'
apply plugin: 'propdeps-maven'
apply plugin: 'propdeps-idea'
apply plugin: 'propdeps-eclipse'
apply plugin: 'eclipse'
apply plugin: 'idea'
buildscript {
repositories {
mavenCentral()
maven { url "http://download.java.net/maven/2" }
maven { url 'http://repo.spring.io/plugins-release' }
}
dependencies {
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
classpath 'com.bmuschko:gradle-tomcat-plugin:2.0'
}
}
repositories {
mavenCentral()
maven { url 'http://repo.spring.io/milestone/'}
}
dependencies {
}
task wrapper(type: Wrapper) {
gradleVersion = '2.2.1'
}
tomcatRunWar.contextPath = ''
tomcatRun.contextPath = ''
tomcatRun.outputFile = file('tomcatRunLog.txt')
tomcatRunWar.outputFile = file('tomcatRunWarLog.txt')
The text was updated successfully, but these errors were encountered: