- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在NumberFormatException
代码中收到Grails
错误,该错误是将电影分类到数据库中。该错误表明它来自cron
插件。我已经完成了研究,并且一直在尝试使用NumberFormatException
捕获错误,但无济于事。我认为问题出在IndexService
。任何帮助将非常感激。
确切的错误是:
2014-07-25 10:09:07,779 [quartzScheduler_Worker-1] ERROR listeners.ExceptionPrinterJobListener - Exception occurred in job: Grails Job
Message: java.lang.NumberFormatException: For input string: "N/A"
Grails version: 2.4.2
Groovy version: 2.3.3
JVM version: 1.7.0_51
quartz - 1.0.2
package movie
import groovy.io.FileType
import groovy.json.JsonSlurper
class IndexService {
static transactional = false
def grailsApplication
private cleanText(String title)
{
//split string into array via .,+,[,] etc...
def splitTitle=(title.toLowerCase()).tokenize('+.[]!£$%^+=~#:; \t \n \r \f / \\ { } @ & - ( )')
//Get rid of extention
splitTitle.remove(splitTitle.size()-1)
//Get rid of Dvdrip and author
//unwanted phrases
def unwanted=["dvdrip","eng","www","torentz","3xforum","bugz","ro","maxspeed","xvid","720p","bluray","yify","1080p","hd","x264","RARBG","mp3","mp4","flv","brrip","rip"]
//Get rid of dates
//get 2000 to current date to put into the unwanted list
for(i in 2000..3000){unwanted.add(i.toString())}
//def empty string to put all our cleaned up text into
def cleanedText = ""
//cleaning up word mess...
splitTitle.each {word->
if(!unwanted.contains(word))
{
cleanedText=cleanedText+word+" "
}
}
//returning with +'s
return (cleanedText[0..-2]).replaceAll("\\s","+")
}
def getInfo(String title)
{
//returned nice with +
def cleanTitle=cleanText(title)
//define my reader
def scan = new JsonSlurper()
def scanner =scan.parseText(("http://www.omdbapi.com/?i=&plot=full&t="+cleanTitle).toURL().text)
if(scanner.Response=="True")
{
/*
organisied like this:
String artwork
String title
Date dateReleased
String userRated
String lengthOfFilm
String genre
String plot
float rating
*/ //returns our info we have scraped
return [
true,
scanner.Poster,
scanner.Title,
new Date(scanner.Released),
scanner.Rated,
scanner.Runtime,
scanner.Genre,
scanner.Plot,
scanner.imdbRating.toFloat()/10
]
}
else
{
return [null,cleanTitle]
}
}
def indexFiles()
{
//returns fileLocation
def fileLocation=grailsApplication.config.grails.movie.location
//Setup as file object
def dir = new File(fileLocation)
//recurse all files
dir.eachFileRecurse (FileType.FILES) { file ->
println(file)
//only create a record if no file test if record exists
if(!Record.findByPathToFile(file.getCanonicalPath())) {
//get record propreties set
def record = new Record()
record.pathToFile = file.getCanonicalPath()
//call to get data of a film returns as a list
def info = getInfo(file.getName())
//check if everthing is alright
info.each{print(it)}
if (info[0] == null) {
try {
//set fallback propeties
record.artwork = null
record.title = info[1].replaceAll("\\+"," ")
record.genre = null
record.dateReleased = new Date(file.lastModified())
record.lengthOfFilm = null
record.plot = null
record.rating = 0
record.userRated = null
record.save(failOnError: true)
}
catch (NumberFormatException e) {
//catch any errors
log.error("Error caught :${e} \n")
}
}
else
{
try
{
//set good propeties
record.artwork = info[1]
record.title = info[2]
record.genre = info[6]
record.dateReleased = info[3]
record.lengthOfFilm = info[5]
record.plot = info[7]
print(info[8])
record.rating = info[8]
record.userRated = info[4]
record.save(failOnError: true)
}
catch (NumberFormatException e) {
//catch any errors
info.each
{
print(it)
}
log.error("Error caught :${e} \n")
}
}
}
}
}
}
package movie
class Record {
//static searchable = true
//data will be recieved via http://www.omdbapi.com/
String artwork
String title
Date dateReleased
String pathToFile
String userRated
String lengthOfFilm
String genre
String plot
float rating
static constraints = {
artwork nullable: true
title nullable: false, unique: true
dateReleased nullable: false
pathToFile nullable: false
userRated nullable: true
lengthOfFilm nullable: true
genre nullable: true
plot nullable: true, maxSize: 2000
rating nullable: true
}
}
package movie
class IndexJob {
static triggers = {
/*
cronExpression: "s m h D M W Y"
| | | | | | `- Year [optional]
| | | | | `- Day of Week, 1-7 or SUN-SAT, ?
| | | | `- Month, 1-12 or JAN-DEC
| | | `- Day of Month, 1-31, ?
| | `- Hour, 0-23
| `- Minute, 0-59
`- Second, 0-59
*/
cron name: "indexTrigger", cronExpression: "0 0/1 * * * ? *"
}
def indexService
def execute() {
indexService.indexFiles()
}
}
最佳答案
试试这个:
package movie
import groovy.io.FileType
import groovy.json.JsonSlurper
class IndexService {
static transactional = false
def grailsApplication
private cleanText(String title)
{
//split string into array via .,+,[,] etc...
def splitTitle=(title.toLowerCase()).tokenize('+.[]!£$%^+=~#:; \t \n \r \f / \\ { } @ & - ( )')
//Get rid of extention
splitTitle.remove(splitTitle.size()-1)
//Get rid of Dvdrip and author
//unwanted phrases
def unwanted=["dvdrip","eng","www","r5","unique","torentz","3xforum","bugz","ro","maxspeed","xvid","720p","bluray","yify","1080p","hd","x264","RARBG","mp3","mp4","flv","brrip","rip"]
//Get rid of dates
//get 2000 to current date to put into the unwanted list
for(i in 2000..3000){unwanted.add(i.toString())}
//def empty string to put all our cleaned up text into
def cleanedText = ""
//cleaning up word mess...
splitTitle.each {word->
if(!unwanted.contains(word))
{
cleanedText=cleanedText+word+" "
}
}
//returning with +'s
return (cleanedText[0..-2]).replaceAll("\\s","+")
}
def getInfo(String title)
{
//returned nice with +
def cleanTitle=cleanText(title)
//define my reader
def scan = new JsonSlurper()
def scanner =scan.parseText(("http://www.omdbapi.com/?i=&plot=full&t="+cleanTitle).toURL().text)
if(scanner.Response=="True")
{
/*
organisied like this:
String artwork
String title
Date dateReleased
String userRated
String lengthOfFilm
String genre
String plot
float rating
*/ //returns our info we have scraped
def imdb = scanner.imdbRating
if (imdb.equalsIgnoreCase("n/a")) {
imdb = "0"
}
return [
true,
scanner.Poster,
scanner.Title,
new Date(scanner.Released),
scanner.Rated,
scanner.Runtime,
scanner.Genre,
scanner.Plot,
imdb.toFloat()/10
]
}
else
{
return [null,cleanTitle]
}
}
def indexFiles()
{
//returns fileLocation
def fileLocation=grailsApplication.config.grails.movie.location
//Setup as file object
def dir = new File(fileLocation)
//recurse all files
dir.eachFileRecurse (FileType.FILES) { file ->
//only create a record if no file test if record exists
if(Record.findByPathToFile(file.getCanonicalPath())==null) {
//get record propreties set
def record = new Record()
record.pathToFile = file.getCanonicalPath()
//call to get data of a film returns as a list
def info = getInfo(file.getName())
//check if everthing is alright
if (info[0] == null) {
try {
//set fallback propeties
record.artwork = null
record.title = info[1].replaceAll("\\+"," ")
record.genre = null
record.dateReleased = new Date(file.lastModified())
record.lengthOfFilm = null
record.plot = null
record.rating = 0
record.userRated = null
record.save(failOnError: true)
}
catch (Exception e) {
//catch any errors
//log.error("Error caught :${e} \n")
}
}
else
{
try
{
//set good propeties
record.artwork = info[1]
record.title = info[2]
record.genre = info[6]
record.dateReleased = info[3]
record.lengthOfFilm = info[5]
record.plot = info[7]
record.rating = info[8]
record.userRated = info[4]
record.save(failOnError: true)
}
catch (Exception e) {
catch any errors
log.error("Error caught :${e} \n")
}
}
}
}
}
}
关于grails - Grails NumberFormatException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24959483/
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
我们正在尝试使用 https://grails.org/plugin/jms用于 jms 集成。但我们无法解决它。 环顾四周,我能够验证它是否存在于这个 repo 中: http://repo.gra
我有许多集成测试在grails 3中失败(而在grails 2中通过),因为它无法解析导入: grails.test.MockUtils grails.test.Grails模拟 我找不到有关应如何迁
有没有办法在 Grails 站点上发生 Grails 错误时向自己发送详细信息? 设置它的最佳方法是什么?在一个地方? (试图保持干燥) 我想包括产生错误的 URL。 最佳答案 . 如果您打算捕获项目
我有一个 grails 应用程序,其中包含一些被序列化为 JSON 的域对象。在另一个 java/groovy 项目中,我想使用这些域对象。如果我发布一个插件,看起来只有其他 grails 应用程序可
我正在尝试为 Grails 编写一个插件,该插件将根据我们在遗留数据库中设计的特殊 View 自动生成我的域类。我基本上只是想节省一些时间手动编写使域类工作所需的所有映射内容。 我是否可以从自定义 A
我正在尝试编写一个可以在多个 Grails 应用程序中重用的插件。该插件基本上应该是 spring security core 的包装器和 ldap 插件。 这意味着它应该包含: 用户/角色的域类 S
我有一个应用程序,我在其中使用 Spring Security 和 grails 旋律。我计划在生产环境中运行 grails melody,但不希望访问者访问它。我应该如何做到这一点?我尝试在 gra
我只是继承了一个现有的应用程序,而我注意到的第一件事是我必须在每个“grails run-app”之前进行“grails clean”操作,否则会出错。创建该项目的人说,他们还有其他几个具有类似设置的
我有一个自定义 toString我的枚举中的方法: enum TaxRate implements Serializable { RATE23(23.0), ... priva
我正在创建一个 Grails 插件作为复杂产品的包装器。该产品对其他产品(如 hibernate)有很多依赖性。问题是,grails 有一些相同的依赖项,但版本不同。 例如。 Grails -> 休眠
当我掉进 grails 服务的兔子洞时,我目前正在将业务逻辑从 Controller 方法转移到服务。我的服务中有以下方法: Job closeJobOpportunity(Job op, Emplo
我只收到默认验证器消息。我究竟做错了什么? class Questao { static hasMany = [alternativas:Alternativa] static constraints
Closed. This question needs to be more focused 。它目前不接受答案。 想改善这个问题吗?更新问题,使其仅通过 editing this post 关注一个
特定版本的 Grails 支持多长时间?一般的 VMWare 支持策略似乎是支持当前版本和一个版本。我无法找到任何关于支持多长时间版本的 Grails 特定信息,通用 VMWare 策略是否适用? 最
我有一个通过 grails 交互模式运行的 grails 应用程序。此应用程序包含服务、tagLibs、gsps 等,但最重要的是它包含 src/groovy 文件夹中的 groovy 文件。 这些
LinkedIn 的人们一直在以一种有趣的方式使用 Play 来处理需要由许多不同组件组成的页面:http://engineering.linkedin.com/play/composable-and
我在 Grails 应用程序中使用 Servlet 3.0 异步渲染。我收到以下错误。 | Error 2014-04-29 11:10:24,125 [Actor Thread 28] ERROR
我看了Controller.groovy源代码,看起来 CRUD 操作不是事务性的(至少是明确的)。 如果我是对的,这是否意味着不应该在生产中按原样使用动态脚手架?有没有办法使它具有事务性(即我可以修
我如何基本上对字符串数据类型字段执行唯一约束。 class User{ String username String Email static hasMany = [roles:Roles
我是一名优秀的程序员,十分优秀!