websphere 7 (and Spring Roo) incompatible with javax.el.ELException

后端 未结 3 1749
不思量自难忘°
不思量自难忘° 2021-02-03 14:58

I have a application where the frontend is based on the Spring Roo 1.1.2 jspx files.

Every think works fine in Tomcat 6, but if I deploy the same application in a Websph

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-03 15:37

    Also you need to use js comments // to make sure panels work with Websphere7 properly, otherwise you won't be seeing folding panels.

    Convert below file last lines like below: (You may need to edit the jsp files using this fiel as well to avoid the execution of cached/compiled version)

    load-scripts.tagx
    
    
    
    
      
      
      
      
    

    Also Websphere 7 does not have built in support for png files and they won't be rendered unless you convert them to jpg and edit the tags to use jpg instead of png files, or you may install the addon for png support to Websphere 7

    EDIT: Adding below to web.xml may solve the problem as well

    
      png
      image/png 
    
    

提交回复
热议问题