0
package com.mirox.weblog; //error here -The type    org.apache.commons.logging.Log cannot be resolved. It is indirectly referenced from required .class files

import java.io.IOException;
import java.text.SimpleDateFormat;
import org.apache.pig.EvalFunc;
import org.apache.pig.data.Tuple;

/* To convert date to hive usable format
*/
public class Date_udf extends EvalFunc{


public String exec(Tuple input)
{
    if(input == null || input.size() == 0)
        return null;
    String s = "";
    String p = "";
    try
    {
        if(input.get(0) != null) //error here in input.get(0) -The type org.apache.hadoop.io.WritableComparable cannot be resolved. It is indirectly referenced from required .class files
        {
            s = input.get(0).toString();
            SimpleDateFormat fromFormat = new SimpleDateFormat("dd/MMM/yyyy:HH:mm:ss");//input date format
            SimpleDateFormat toFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//output date +format
            p = toFormat.format(fromFormat.parse(s));// converting date format
        }
    }
    catch(Exception e)
    {
        e.printStackTrace();
    }
    return p;
}}

私が行っているプロジェクトは、Hadoop (pig、hive、scoop、oozie) を使用した Web ログ分析 (攻撃検出) です。

WEB/INF にライブラリを追加してみました。コモンズ コーデック 1.10、コモンズ ファイルアップロード 1.3.1、コモンズ io 2.5、および見つけた他のすべてのライブラリを追加しました。

以前はこれらのエラーが発生していませんでした。

私は初心者です。ヘルプ/修正をいただければ幸いです。

4

1 に答える 1

1

commons-logging jarクラスパスに追加します。エラーを修正する必要があります。

于 2016-05-07T17:12:07.313 に答える