0

以下のコンストラクターでnullPointerExceptionが発生します...親クラスも含めました。

SEVERE: Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'contentController' defined in file [C:\Users\bkuhl\JavaProjects\cmt\cmt\target\cmt\WEB-INF\classes\com\site\cmt\web\ContentController.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.fettergroup.cmt.web.ContentController]: Constructor threw exception; nested exception is java.lang.NullPointerException

そして、クラス(親コンストラクターを使用するようにコンストラクターが省略されました)

public class ContentController extends com.site.cmt.library.Controller {
     ...
}

と親クラス

public class Controller {
    private SortedMap<Integer, String> cssFiles;
    private SortedMap<Integer, String> jsFiles;

    public Controller () {
        this.addCss("global.css");
        this.addJs("global.js");
    }
    ....
4

1 に答える 1

0

ommitを試し addCssaddJs問題が実装メソッドの内部にないことを確認しましたか?

于 2012-04-26T23:00:55.200 に答える