代码之家  ›  专栏  ›  技术社区  ›  mcfly soft

嵌入JSF页面和webjar(引导css)

  •  0
  • mcfly soft  · 技术社区  · 5 年前

    我试图在我的JSF页面中使用引导css,但在引用它时遇到了问题。 根据教程,我做了以下工作:

    添加了Maven依赖项:

    <dependency>
        <groupId>org.webjars</groupId>
        <artifactId>bootstrap</artifactId>
        <version>3.0.0</version>
    </dependency>
    

    在JSF页面中添加了参考:

    <h:outputStylesheet  library="webjars"
                           name="bootstrap/3.0.0/css/bootstrap.css"/>
      <h:outputStylesheet name="css/mystyles.css" />
    

    调用页面时,只能引用我的“mystyles.css”。请参阅HTML页面的来源:

    <link type="text/css" rel="stylesheet" href="RES_NOT_FOUND" />
    <link type="text/css" rel="stylesheet" href="/j2eetest4_war_exploded/javax.faces.resource/css/mystyles.css.xhtml" />
    

    引用webjar会有什么问题?

    0 回复  |  直到 5 年前
    推荐文章