Developping web app

Controller: Their primary job is to handle HTTP requests and either hand a request off to a view to render HTML(browser-displayed) or write data directly to the body of a response (RESTful).

CSS样式

float

浮动

padding-left

浮动之间的距离

border

边框

nth-childer(odd,even)

条目的单数,双数

/*开启浮动*/
div.ingredient-group:nth-child(odd){
    float: left;
    padding-right: 20px;
    border: 1px solid mistyrose;
}

div.ingredient-group:nth-child(even){
    float: left;
    padding-right: 0px;
    border: 1px solid green;
}


::after

表示对.grid的标签之后的标签

display

表示以table的列表形式展示

clear

取消浮动

/*表单选项之后将浮动清楚*/
.grid::after{
    content: "";
    display: table;
    clear: both;  /*Do not allow floating elements on the left or the right side of a specified element:*/

}

width

设置大小,50%可以理解为在同一行,可以浮动的块,两个

box-sizing

表示box的大小是以什么标准计算的

/*设置列表的布局*/
div.ingredient-group{
    width: 50%;  /*大小*/
}

*,*:after,*:before{
    -webkit-box-sizing: border-box;/*Webkit(Chrome/Safari)*/
    -moz-box-sizing: border-box; /*Gecko(Firefox)-moz-box-sizing */
    box-sizing: border-box;  /*https://www.w3schools.com/cssref/tryit.asp?filename=trycss3_box-sizing*/
}

Thymeleaf

常用标签

th:if
如果条件成立,则这个标签展示
<span class="validationError"
    th:if="${#fields.hasErrors('name')}"
    th:errors="*{name}">Name Error</span>
th:action
提交到这个链接
<form method="POST" th:action="@{/orders}" th:object="${order}">
th:object
这个order是model的属性值,代表一个对象,用于field,数据绑定
<form method="POST" th:action="@{/orders}" th:object="${order}">
th:text
显示文本信息,这里的${ingredient.name} 表示变量ingredient的name属性
<div th:each="ingredient : ${sauce}">
    <input name="ingredients" type="checkbox" th:value="${ingredient.id}" th:field="*{ingredients}"/>
    <span th:text="${ingredient.name}">INGREDIENT</span><br/>
</div>

显示文本信息,这里的*{name},这个name是th:object{对象}的属性域
<span th:text="*{name}">NAME</span>

th:each
循环遍历容器的内容
<div th:each="ingredient: ${protein}" >
    <input name="ingredients" type="checkbox" th:value="${ingredient.id}" th:field="*{ingredients}"/>
    <span th:text="${ingredient.name}">INGREDIENT</span><br/>
</div>
th:source
引入css文件
 <link rel="stylesheet" th:href="@{/styles.css}" />
th:value
与html标签的value一样,
<input name="ingredients" type="checkbox" th:value="${ingredient.id}" th:field="*{ingredients}"/>
th:field
与对象的数据绑定相关,内容是其属性,如: ingredients在Order中是一个List对象
<input name="ingredients" type="checkbox" th:value="${ingredient.id}" 
    th:field="*{ingredients}"/>

fields

表示是否有name这个校验的错误,name为对象的属性
<span class="validationError"
th:if="${#fields.hasErrors('name')}"
th:errors="*{name}">Name Error</span>

数据绑定

  1. Java代码在model中添加对象
model.addAttribute("order",new Order());
  1. 在表单中拿出这个对象
<form method="POST" th:action="@{/orders}" th:object="${order}">
用field对其属性赋值
从输入框对其赋值
<input type="text" th:field="*{name}" />
单选框,将value值添加到ingredients(实际上在对象中是个列表List)这个属性中
<input name="ingredients" type="checkbox" th:value="${ingredient.id}" th:field="*{ingredients}"/>
  1. 在Java代码中声明要接收的这个对象
//@ModelAttribute("design") 将绑定的design
<form method="POST" th:object="${design}">
赋值给参数(Taco design)不是(Design design)所以要声明

public String processDesign(@Valid @ModelAttribute("design")Taco design, Errors errors,Model model)

//Order order这种形式一样的,可以不用声明@ModelAttribute

<form method="POST" th:action="@{/orders}" th:object="${order}">
public String processOrder(@Valid Order order, Errors errors,Model model)



回显

用户填写的数据回显

当校验发生错误,后继续返回到填写页面,其中用户填写的数据仍然在表单中

  1. Model--->View: 将属性值key-value加入到Model中
  2. View--->Model: View层通过从Model中取值,渲染数据;用户在页面填充数据,当提交时会自动添加到Model中

Java代码发送Model--到--View层(填充数据)---到--Java代码,其中Model已经改变,其中的值从Model中取出渲染显示,然后将数据绑定到Model中(此Model非之前的Model)

检验提示显示

通过绑定的数据的对象fields值来测试是否显示该标签---(thymelead)

 <span class="validationError"
            th:if="${#fields.hasErrors('name')}"
            th:errors="*{name}">Name Error</span>

SpringMVC

常用注解

@Controller

表示为将被Spring扫描

@RequestMapping

@RequestMapping("/design")
public class DesignTacoController {

@GetMapping

@GetMapping  //@RequestMapping(method=RequestMethod.GET)
public String showDesignForm(Model model)

@ModelAttribute

指定Model中的值给声明的对象

public String processDesign(@Valid @ModelAttribute("design")Taco design, Errors errors,Model model)

@Configuration

配置那些只请求连接不处理数据,WebMvcConfigurer接口

@Configuration
public class WebConfig implements WebMvcConfigurer {
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/").setViewName("home");
    }
}

控制器方法返回值

View的逻辑名称

 return "designForm";  //定位到designForm.html

重定向

return "redirect:/orders/current";

测试

@RunWith

@WebMvcTest

@RunWith(SpringRunner.class)  //内部封装了junit
@WebMvcTest(WebConfig.class) //测试的控制器
public class HomePageControllerTest {
    @Autowired
    private MockMvc mockMvc;
    @Test
    public void testHomePage() throws Exception {
        mockMvc.perform(get("/"))
                .andExpect(status().isOk())
                .andExpect(view().name("home"))
                .andExpect(content().string(
                        containsString("Hello Q10Viking,welcome to ...")
                ));
    }
}

检验

**javaxavax.validation.constraints.* **
java自带的校验

@Valid

当用户的数据传递过来准备处理之前,需要进行校验,当有错误发生会将信息存储到Errors对象

@PostMapping
public String processOrder(@Valid Order order, Errors errors,Model model)

@NotBlank

@NotBlank(message="Name is required")
private String name;

@Pattern

@Pattern(regexp = "^(0[1-9]|1[0-2])([\\/])([1-9][0-9])$",
            message = "Must be formatted MM/YY")
private String ccExpiration;

@Digits

@Digits(integer = 3,fraction = 0,message = "Invalid CVV")

@NotNull

@NotNull
@Size(min=5,message="Name must be at least 5 charaters long")
private String name;

@NotEmpty

如: List不能为空

@Size

也可以用户容器里面的元素数量

@Size(min=1,message = "至少选择1个")
// @NotEmpty(message="You must choose at least 1 ingredient")
private List<String> ingredients;

org.hibernate.validator.constraints
使用hibernate的校验

@CreditCardNumber

@CreditCardNumber(message="Not a valid credit card number")
private String ccNumber;

lombok

@Slf4j

日志声明

private static final org.slf4j.Logger log =
 org.slf4j.LoggerFactory.getLogger(DesignTacoController.class);

References

chapter2l.gif
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容

  • 人们总爱用"像一个模子里刻岀来似的"来形容长相非常相似的人,眼距宽、鼻根低、眼裂小、眼外侧上斜、外耳小、头...
    快乐_fc7a阅读 274评论 2 3