2017-05-06 25 views
0

私のサービスwebjarsブートストラップで使用したいです。 私はthymeleafSpringとGradle - プロジェクトにWebJars Bootstrapを追加する

<link rel="stylesheet" th:href="@{webjars/bootstrap/4.0.0-alpha.6-1/css/bootstrap.min.css}"> 

ブートストラップブートストラップCSSを使用すると、まったく動作しないソース

 registry 
      .addResourceHandler("/webjars/**") 
      .addResourceLocations("/webjars/"); 

を登録依存

compile group: 'org.webjars', name: 'bootstrap', version: '4.0.0-alpha.6-1' 

を追加しました。アイテムはありません。このサービスがどのようにブートストラップのCSSファイルを見なかったのですか?このプロジェクトでは、私はSpring Securityなどを使用します。何か影響はありますか?そして、それを修正する手間がありますか? webjarsファイルと 'resource'フォルダ内のプレーンなcssファイルの間の速度はいくらですか?

答えて

0

あなたは以下のようなbootstrap.min.cssファイルを追加することができます。

<link href="http://cdn.jsdelivr.net/webjars/bootstrap/3.3.4/css/bootstrap.min.css" 
      th:href="@{/webjars/bootstrap/3.3.4/css/bootstrap.min.css}" 
      rel="stylesheet" media="screen" /> 

は、このリンクで与えられるgithubの例:https://github.com/springframeworkguru/springbootwebapp

全チュートリアルはここにある:https://springframework.guru/spring-boot-web-application-part-2-using-thymeleaf/

関連する問題