该应用程序在本地工作正常。但是,在heroku中部署它会给出以下错误,而没有任何线索
com.github.dandelion.core.DandelionException:该文件 'WEB-INF / classes / dandelion / my-bundle.json'格式错误。
请帮我解决此问题。
以下是JSON文件供参考。
以下是部署中使用的json文件供您参考。
{
"bundle" : "my-bundle",
"assets": [
{
"name": "jquery",
"version": "2.1.1",
"type": "js",
"locations": {
"webapp": "/webjars/jquery/2.1.1/jquery.min.js"
}
},
{
"name": "datatables",
"version": "1.10.5",
"type": "js",
"locations": {
"webapp": "/webjars/datatables/1.10.5/js/jquery.dataTables.js"
}
},
{
"name": "datatables",
"version": "1.10.5",
"type": "css",
"locations": {
"webapp": "/webjars/datatables/1.10.5/css/jquery.dataTables.css"
}
}
]
}
感谢。