Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Tue Jun 30 17:24:02 CST 2015 There was an unexpected error (type=Not Found, status=404). No message available
那么就是因为你所创建的包不在springboot的主配置类所在包内,点击查看详情
含有注解@SpringBootApplication的类,比如默认创建好的主配置类是这样子的:
package com.test.HelloWord;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class HelloWordApplication {
public static void main(String[] args) {
SpringApplication.run(HelloWordApplication.class, args);
}
}
要想使用注解,创建的包必须全部在package com.test.HelloWord内部
1.@SpringBootConfiguration ------- 2. @EnableAutoConfiguration
1.@SpringBootConfiguration
这个注解又包含:
@Configuration,它表示配置类:
- 该类是一个配置类
- 加了这个注解会自动放入spring 容器
- @EnableAutoConfiguration:使用springBoot可以自动配置,摆脱了ssm中使用spring.xml,mybatis.xml,以及springmvc.xml文件配置的繁琐,工作原理就是就是找到主配置类所在的包,并将该包以及所在的子包纳入控制器
spring 在启动时会根据D:\MAVENRes\org\springframework\boot\spring-boot-autoconfigure\2.1.0.RELEASE\spring-boot-autoconfigure-2.1.0.RELEASE.jar下面的/META-INF/spring.factories自动加载第三方jar包
@Conditional注解:
在application.properties加入debug=true即可
1.配置文件的作用:就是对默认的配置进行修改
2.默认的全局配置文件:
8888
而yml如何实现更改端口,参考下面代码:
server:
port: 8888 注意‘:’与8888之间存在空格
要注意port要与server垂直对齐
3.具体如何修改默认配置举一个小例子:
默认端口是8080,如果我想修改成其他的端口号只需要这步操作即可:
server.port=8081,只需要这一句话即可以把端口号改为8081
4.在yml文件中对象属性进行操作:
直接看代码:
package com.test.HelloWord.po;
@Component//作用是将此bean放入spring容器
@ConfigurationProperties(prefix="StudentPo")//作用是将StudentPo能够被yml文件识别,并能对其进行属性的注入
public class StudentPo {
private String name;
private int age;
private boolean sex;
private Data birthday;
private Map location;
private String hobbbies[];
private List skills;
private PetPo pet;
此处省略构造函数以及get set方法
}
而yml文件中的内容如下:
StudentPo:
name: zx
age: 21
sex: true
birthday: 2018/11/21
location: {province: 江苏省,city: 南京市,zone: 玄武区}//注:这种是对map函数的赋值方法,此处虽然没有加引号,但是如果字段里面有转意符,比如\n,\t等,要想使转意生效,就必须加双引号
hobbbies:
- 唱歌
- 运动 //这种是对数组进行赋值的方法
skills:
- 计算机
- 软件开发 //这种是对数组进行赋值的方法
pet:
nickName: luckliy
strain: 哈士奇 //这种是对属性为对象的赋值方法
测试语句如下:
@RunWith(SpringRunner.class)
@SpringBootTest
public class HelloWordApplicationTests {
@Autowired
StudentPo stu;//由于已经将student加上注解:@Component//作用是将此bean放入spring容器,所以可以进行自动注入
@Test
public void contextLoads() {
System.out.println(stu.toString());
}
}
public class StudentPo {
@Value("zx")//加上这条注解之后name的值就变为zx
private String name;
@Value("23")//age就变为23
private int age;
}
# | @ConfigurationProperties | @Value |
---|---|---|
注值 | 批量注入 | 单个 |
spEL | 不支持 | 支持 |
JSR303 | 支持 | 不支持 |
注入复杂类型 | 支持 | 不支持 |
复杂类型:除了(8个基本类型,String,Date类型以外的都是复杂类型)
下面重点讲解一下JSR303校验的用法:
@Component//作用是将此bean放入spring容器
@ConfigurationProperties(prefix="student")//作用是将StudentPo能够被yml文件识别,并能对其进行属性的注入
@Validated//开启jsr303数据校验
public class StudentPo {
@Email
private String emial
}
通过注解@PropertySource来加载不是默认配置文件的文件,注:默认配置文件只有两种:
先看看conf.properties
student.age=66
再接着看如何使用:
@Component//作用是将此bean放入spring容器
@ConfigurationProperties(prefix="student")//作用是将StudentPo能够被yml文件识别,并能对其进行属性的注入
@Validated//开启jsr303数据校验
@PropertySource(value= {"classpath:conf.properties"})//作用是引入配置文件
public class StudentPo {
private int age
}
但是这个注解有个缺陷就是仅支持.properties文件
@SpringBootApplication
@ImportResource({"classpath:spring.xml"})//此处是新加入的
public class HelloWordApplication {
public static void main(String[] args) {
SpringApplication.run(HelloWordApplication.class, args);
}
}
具体如何调用这个xml文件,我们先看看这个xml文件的内容:
对应的PetPo对象:
package com.test.HelloWord.po;
public class PetPo {
private String nickName;
private String strain;
对应的get set方法已经省略,但是一定要加进去,否则属性就无法注入
}
对应的测试程序:
@RunWith(SpringRunner.class)
@SpringBootTest
public class HelloWordApplicationTests {
@Autowired
ApplicationContext ac;//此处是为了获取spring容器
@Test
public void test1() {
PetPo petPo= (PetPo)ac.getBean("PetPo");
System.out.println(petPo.toString());
}}
但是并不推荐这种方式进行属性的注入,太麻烦,推荐使用配置类
配置类就是配置文件(.xml文件)配上注解的形式,如何创建配置类:
@Configuration//加上他之后这个类就是配置类
public class AppConfig {
@Bean//加上它之后就相当于创建了一个 标签
public PetPo ppp() {/*ppp相当于 中的id*/
PetPo p=new PetPo();
return p;
/*返回的结果类型就相当于 中的class*/
}
}
下面写一个测试方法自己感受一下
@RunWith(SpringRunner.class)
@SpringBootTest
public class HelloWordApplicationTests {
@Autowired
ApplicationContext ac;//此处是为了获取spring容器
@Test
public void test1() {
PetPo petPo= (PetPo)ac.getBean("p");
System.out.println(petPo.toString());
}
}
student.age=${}
application-dev.properties
application-test.properties
至于具体怎么切换:就是在主配置文件(application.properties)中加入:
spring.profiles.active=dev
表示切换到dev下的端口环境
server:
port: 1234
---
server:
port: 8880
spring:
profiles: dev//用于声明环境名为dev
---
server:
port: 8881
spring:
profiles: test //用于声明环境名test
这样的话就创建好了三个环境,但是至于使用哪一个环境,就得使用这样的配置:
在主端口中这样声明:
server:
port: 1234
spring:
profiles:
active: dev //切换到端口到dev环境
右单击 ->Run As->RunConfigurations->Arguments->在里面输入--spring.profiles.active=环境名
比如:--spring.profiles.active=dev
右单击项目->Run As->maven build,进入之后在package即可
下面再接着叙述如何在cmd中运行打成的jar包
java -jar HelloWord-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev
右单击 ->Run As->RunConfigurations->Java Application->HellowdApplication(此处为项目名,项目不同名字也不一样)->右边的Argument,
输入 -Dspring.profiles.active=dev
springBoot能够默认读取的文件有两种,一个是application.properties以及application.yml文件
但是这两个文件可以存放在哪一个位置,就是在
在主配置文件application.properties中加入:
server.servlet.context-path=/springBoot
注意:此处的springBoot就是新加入的项目名,在未加入之前访问是这样的:
http://localhost:8888/HelloWord?name=zhuxu
加了之后就变成了这样的:
http://localhost:8888/springBoot/HelloWord?name=zhuxu
比如说在我的这个路径下C:\Users\17732\Desktop\test\application.properties有一个application.properties文件,那么怎么使用里面的配置:
右单击 ->Run As->RunConfigurations->Arguments->在里面输入--spring.config.location=路径名
比如:--spring.config.location=C:\Users\17732\Desktop\test\application.properties
如果内部外部配置有冲突,优先选择外部的
接着学习一下如何通过cmd命令调用外部配置文件
java -jar HelloWord-0.0.1-SNAPSHOT.jar --spring.config.location=C:\Users\17732\Desktop\test\application.properties
设置某一个参数,还是按照这个步骤(右单击 ->Run As->RunConfigurations->Arguments)到Arguments下
比如说只更改端口:–server.port=8882
具体如何使用日志参照下面代码:
@RunWith(SpringRunner.class)
@SpringBootTest
public class HelloWordApplicationTests {
Logger logger=LoggerFactory.getLogger(HelloWordApplicationTests.class);
@Test
public void testLog() {
logger.trace("测试Logger_Trace");
logger.debug("测试Logger_debug");
logger.info("测试Logger_Info");
logger.warn("测试Logger_warn");
logger.error("测试logger_error");
}}
但是在测试时发现只能输出info warn 以及error中的内容,其他的内容均为输出,这是由于日志级别的问题
日志级别有:
trace debug info warn error fail off
其中默认的级别是 info,只打印info以后的,而Info以前的不给予打印
在主配置文件application.properties中设置:
logging.level.com.test.HelloWord=debug
其中com.test.HelloWord是主配置类的包名
这样的话就把日志的默认级别也就是最低级别调到debug
在主配置文件application.properties中设置:
logging.file=D:/program/springBoot/HelloWord/log/springBoot.Log
这样的话就可以把日志信息加入到上面目录下的springBoot.Log文件中
当然还有logging.path=D:/
这样的话就直接把日志输出指定的文件夹中,默认的文件名是spring.log
指定日志显示格式:
在主配置文件application.properties中设置:
logging.pattern.console=%d{yyyy-MM-dd} [%thread] %-5level %logger{50} -%msg%n
下面解释一下上面这串代码的意思:
在主配置文件application.properties中设置:
logging.pattern.file=%d{yyyy-MM-dd} ** [%thread] ** %-5level ** %logger{50} ** %msg%n
org.webjars
jquery
3.3.1-1
org.webjars
bootstrap
4.1.3
下面简单的进行对jquery.js进行访问:
http://localhost:1234/zhiyi/webjars/jquery/3.3.1-1/jquery.js
注意:开始的是从webjars开始的
http://localhost:1234/zhiyi/Hello.html
在任意静态资源目录下,只要文件名叫做index.html,它就是主页,直接访问即可:
http://localhost:1234/zhiyi
那么如何进行更改favicon.ico呢
我们只需要将favicon.ico放在任何静态资源目录中即可
如何自定静态资源位置:
在主配置文件application.properties中设置:
spring.resources.static-locations=classpath:/res/
然后在src/main/resources下创建对应的res目录,这样的话静态资源目录除了默认的resources以及static目录,res现在也是静态资源目录了
同样访问的时候也不需要加前缀res,直接输入文件名即可:
http://localhost:1234/zhiyi/res.html
如果创建多个资源路径就这样:
spring.resources.static-locations=classpath:/res/ ,classpath:/img/
注意:一旦自定义了,默认的静态资源文件夹就会全部失效
springBoot是不支持动态页面jsp,但是如何来替换jsp页面呢,那么就使用我们的动态模板引擎thymeleaf
那么到底什么是模板引擎:
模板引擎就是将一个网友分为两部分:
https://docs.spring.io/spring-boot/docs/2.1.0.RELEASE/reference/htmlsingle/#using-boot-starter
org.springframework.boot
spring-boot-starter
org.thymeleaf
thymeleaf-spring5
org.thymeleaf.extras
thymeleaf-extras-java8time
导入之后我们来研究第一个问题:引入thymeleaf 代码应该往哪里写
thymeleaf的代码全部放在构建路径(src/main/resources/)下的templete目录下
下面先看一个模板:
templete目录下的html:
Thymleaf
Welcome to thymeleaf!
先看一下上面这个代码片段,其他的都是模板,以后直接拿着用,但是p中有一个th:text="${welcome},会优先显示welcome中的内容
那么总结一下:th:就是替换的意思,比如:
Welcome to thymeleaf!
那么如果${welcome}中有值,那么就就会有优先使用welcome中的值
在写一个controller:
@Controller
public class BootController {
@RequestMapping("/wecome")
public String wecome(Map map) {
map.put("welcome", "welcome_Thymeleaf");
return "result";
}}
th后面到底可以存放哪些内容呢:
Order | Feature | Attributes |
---|---|---|
1 | Fragment inclusion | th:insert th:replace |
2 | Fragment | iteration |
3 | Conditional evaluation | th:if th:unless th:switch th:case |
4 | Local variable definition | th:object th:with |
5 | General attribute modification | th:attr th:attrprepend th:attrappend |
6 | Specific attribute modification | th:value th:href th:src … |
7 | Text (tag body modification) | th:text th:utext |
8 | Fragment specification | th:fragment |
9 | Fragment removal | th:remove |
下面重点讲一下 th:text,th:untext
th:text="hello
"
th:untext="hello
"
第一个显示的是大大的标题hello,而第二个显示的是‘《h1》hello《/h1》’
下面写一个关于th:each的用法:
html页面:
Thymleaf
姓名
年龄
姓名
年龄
对应的controller:
@Controller
public class BootController {
@RequestMapping("/wecome")
public String wecome(Map map) {
map.put("welcome", "welcome_Thymeleaf");
List lStudents = new ArrayList();
lStudents.add(new Student("zx", 21));
lStudents.add(new Student("zx1", 22));
lStudents.add(new Student("zx3", 23));
lStudents.add(new Student("zx4", 24));
map.put("Students", lStudents);
return "result";
}}
对应的Po:
public class Student {
private String name;
private Integer age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public Student() {
super();
}
public Student(String n,Integer a) {
super();
this.name=n;
this.age=a;
}}
springBoot是不支持jsp开发的,因为jsp页面需要打成war包部署到tomcat,但是springBoot是不用打成war包就能运行,这个时候就需要使用外置的tomcat
下面接着讲一个maven的小知识:
接着进入我们的主题:如何使用外置的tomcat,参考 点击此处
然后进行下面几个步骤:
spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp
index.jsp:
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
Insert title here
Hello ${requestScope.name} Welcome to Index.jsp
Controller:
@Controller
public class WebController {
@RequestMapping("/welcome")
public String welcome(Mapmap) {
map.put("name", "朱旭");
return "index";
}}