Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] JSF1027: [null] The ELResolvers for JSF were not registered with the JSP container.

Hi.

I am trying to switch my Spring Boot, with JSF 2.2, projects from using embedded Tomcat to using embedded Jetty and I seems to have it working now,
just one annoying log message in the log that I can not seem to get rid of:

JSF1027: [null] The ELResolvers for JSF were not registered with the JSP container.


My dependencies looks like this:

dependencies {
    compile('org.springframework.boot:spring-boot-starter-actuator')
    compile('org.springframework.boot:spring-boot-starter-jdbc') {
        exclude group: 'org.apache.tomcat' , module: 'tomcat-jdbc'
    }
    compile('org.projectlombok:lombok:1.16.6')
    compile('org.springframework.boot:spring-boot-starter-mail')
    compile('org.springframework.boot:spring-boot-starter-security')
    compile('org.springframework.boot:spring-boot-starter-web') {
        exclude module: 'spring-boot-starter-tomcat'
        exclude module: 'spring-boot-starter-validation'
        exclude group: 'org.apache.tomcat:embed' , module: 'tomcat-embed-el'
    }
    compile('org.springframework.boot:spring-boot-starter-jetty')
    compile('com.zaxxer:HikariCP:2.4.5')
    compile "org.primefaces:primefaces:$primefaces"
    compile 'com.google.code.gson:gson:2.6.2'
    compile 'org.apache.commons:commons-lang3:3.3.2'
    compile "com.sun.faces:jsf-api:$jsf"
    compile "com.sun.faces:jsf-impl:$jsf"
    compile "org.jasypt:jasypt:$jasypt"
    compile "org.jasypt:jasypt-springsecurity3:$jasypt"
    compile "org.jasypt:jasypt-spring31:$jasypt"
    compile 'joda-time:joda-time:2.9.2'
    compile 'com.google.guava:guava:19.0'
    compile('javax.servlet:jsp-api:2.0')
    compile('javax.servlet:javax.servlet-api:3.1.0')
    compile('org.glassfish.web:el-impl:2.2')
    runtime('org.postgresql:postgresql:9.4.1208')
}


First, is this a correct configured Jetty project? Also, what is missing, can I get rid of that log message or can I just ignore it?


Regards,

BTJ

-- 
-----------------------------------------------------------------------------------------------
Bjørn T Johansen

btj@xxxxxxxxxx
-----------------------------------------------------------------------------------------------
Someone wrote:
"I understand that if you play a Windows CD backwards you hear strange Satanic messages"
To which someone replied:
"It's even worse than that; play it forwards and it installs Windows"
-----------------------------------------------------------------------------------------------


Back to the top