專案建立在IDEA中建立即可。
注意點:
1、所有檔案都需要放在:
Application檔案的同級或下級目錄中
2、application.properties 為spring-boot 專案主核心設定檔,且只能有一個核心設定檔。
3、多重環境下的核心設定檔的使用, 檔案名稱必須以 application- 開頭!
application-xxx.properties
(1)開發環境
# 开发环境配置文件 server.port=9000 server.servlet.context-path=/
(2)測試
# 测试环境配置文件
( 3)生產環境
# 生产环境配置文件 server.port=7000
在主核心設定檔中啟動我們自訂的設定檔:
#激活我们编写的application-xxx.properties配置文件 spring.profiles.active=dev
4、@Value 註解
spring -boot核心設定檔自訂的設定屬性,如何取得
下邊方式只能一個一個屬性取得!
例如:在application.properties檔案中自訂了一個設定website=http://www.baidu.com
在專案中取得到這個自訂的設定:
使用註解@ Value("${website}")
也可以寫一個預設值,如果設定項沒有,會使用預設值@Value("${website: 預設值}")
package com.lxc.sprint_boot_01.web; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import javax.management.ValueExp; import javax.print.DocFlavor; // 声明控制层 @Controller public class IndexController { @Value("${website:values}") private String name; // 此时website值会赋给name属性 @RequestMapping(value = "/self") @ResponseBody public String self() { return name; } }
5、@Component 和@ConfigurationProperties(prefix="xxx") 註解
spring-boot核心設定檔將我們自訂的設定屬性,映射為一個物件(取得的是一個物件),使用這種方式的前提:設定檔中的屬性必須要寫前綴!
application.properties檔案
# 属性前边必须要有前缀,我这里前缀是user user.name=lxc user.password=123456
config -> user.java檔案
package com.lxc.sprint_boot_01.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component // 将此类交给spring容器管理 @ConfigurationProperties(prefix = "user") // 配置属性注解,参数前缀必须有值,值为我们定义的前缀 // 配置完上边的两个注解,下边把配置文件中的属性映射到下边类中去 public class User { private String username; private String password; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }
呼叫屬性
package com.lxc.sprint_boot_01.web; import com.lxc.sprint_boot_01.config.User; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import javax.management.ValueExp; import javax.print.DocFlavor; import java.util.HashMap; import java.util.Map; // 声明控制层 @Controller public class IndexController { @Autowired // @Autowired 把User类注入进来 private User user; @RequestMapping(value = "/many") @ResponseBody public String many() { return "user为:"+user.getUsername() + ",密码为:"+user.getPassword(); } }
##6、加上@ConfigurationProperties註解,會出現上邊紅色警告,想解決此問題需要加上一個依賴套件:
<dependency>
<groupid>org.springframework.boot</groupid>
<artifactid>spring-boot-configuration-processor</artifactid>
</dependency>
7 、如果在application.properties中有中文,會出現亂碼,在IDEA中解決中文亂碼的問題:
##8、在設定檔中屬性的鍵值對不能有空格,否則解析會有問題!
9、spring-boo整合JSP
先在main資料夾下建立webapp資料夾,然後 點選
file-> ; project structure
->Modules
如下圖:然後在彈出的對話框中點選右邊文件,找到我們剛才建立的webapp資料夾,確定即可,如下:
此時,webapp會變成如下樣子。 配置pom.xml檔(1)先引進spring-boot內嵌的tomcat對jsp的解析依賴,不加入解析不了jsp
<!--引入spring-boot内嵌的tomcat对jsp的解析依赖,不添加解析不了jsp--> <dependency> <groupid>org.apache.tomcat.embed</groupid> <artifactid>tomcat-embed-jasper</artifactid> </dependency>###(2)spring-boot預設使用的是前端引擎thymeleaf,現在我們要使用springboot繼承jsp,需要手動指定jsp最後編譯的路徑,而且springboot繼承jsp的路徑是springboot規定好的位置: META-INF/resources###
<build> <!--spring-boot默认使用的是前端引擎thymeleaf,现在我们要使用springboot继承jsp,需要手动指定jsp最后编译的路径,而且springboot继承jsp的路径是springboot规定好的位置:META-INF/resources--> <resources> <resource> <!--源文件--> <directory>src/main/webapp</directory> <!--指定编译路径:--> <targetpath>META-INF/resources</targetpath> <!--指定源文件夹中的哪些资源需要被编译--> <includes> <include>*.*</include> </includes> </resource> </resources> <plugins> <!-- ··· --> </plugins> </build>###最後一步:在application.properties 中設定視圖解析器###
# 配置视图解析器 spring.mvc.view.prefix=/ # 前缀 spring.mvc.view.suffix=.jsp # 后缀###建立.jsp頁面,測試:###
<title>Title</title> <h2>${msg}</h2>
package com.lxc.boot_02; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; @Controller public class controller { // 写法一: @RequestMapping(value="/say") public ModelAndView say() { ModelAndView mv = new ModelAndView(); // 给视图传值 mv.addObject("msg", "hello"); // 设置 最终视图的名称 mv.setViewName("say"); return mv; } // 写法二:把视图和模型拆分开,返回一个视图(return的是视图的名字) @RequestMapping(value = "/index") public String index(Model model) { model.addAttribute("msg", "lxc;"); return "say"; } }### 寫法一:## #############寫法二:############
以上是Springboot入門使用實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!