我正在使用grails 2.4.7。现在我切换到grails 3.2.3。我正在尝试在ubuntu server中的tomcat7中部署我的项目war文件。我收到404错误。我添加了所有可能的插件,包括这个< / p>
provided "org.springframework.boot:spring-boot-starter-tomcat"
在厌倦了我用ROOT名称建立战争但仍然有同样的问题。任何人都可以给我一些可能的解决方案。这是我的application.yml代码。
environments:
development:
grails:
serverURL: http://localhost:8080
dataSource:
dbCreate: create
url: jdbc:mysql://localhost/somedb
username: ****
password:
dialect: org.hibernate.dialect.MySQL5InnoDBDialect
#url: jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE
test:
grails:
serverURL: http://localhost:8080
dataSource:
dbCreate: update
url: jdbc:h2:mem:testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE
production:
grails:
serverURL: http://ipaddress:8080
dataSource:
dbCreate: create
url: jdbc:mysql://localhost/somedb
username: *****
password: *******
dialect: org.hibernate.dialect.MySQL5InnoDBDialect
# url: jdbc:h2:./prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE
properties:
jmxEnabled: true
initialSize: 5
maxActive: 50
minIdle: 5
maxIdle: 25
maxWait: 10000
maxAge: 600000
timeBetweenEvictionRunsMillis: 5000
minEvictableIdleTimeMillis: 60000
validationQuery: SELECT 1
validationQueryTimeout: 3
validationInterval: 15000
testOnBorrow: true
testWhileIdle: true
testOnReturn: false
jdbcInterceptors: ConnectionState
defaultTransactionIsolation: 2
答案 0 :(得分:0)
您可能在build.gradle文件中缺少以下内容:
ext['tomcat.version'] = '7.0.54'
将版本号替换为您正在使用的Tomcat版本。
Grails 3与Tomcat 8开箱即用,您需要在build.gradle文件中指定Tomcat版本才能与Tomcat 7一起使用。
有关详细信息,请参阅Deploying an application。