這是一個測試:測試博客在瀏覽器中是否能夠顯示數學內容以及代碼格式

四下易錯題 git

  1. 填空題:
    1. 把0.04擴大100倍是4;

      把0.04擴大到原數的100倍是4; github

      把52縮小到原數的

      是0.052;
      web

      把52縮小1000倍是0.052。 spring

<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:context="http://www.springframework.org/schema/context"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation=" 
 http://www.springframework.org/schema/beans 
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
 http://www.springframework.org/schema/context 
 http://www.springframework.org/schema/context/spring-context-3.0.xsd">

 <context:component-scan base-package="com.yiibai"/>app

 <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">yii

<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
 </bean>
</beans>

如下是有關HelloWeb-servlet.xml文件的重點說明:jsp

  • [servlet-name]-servlet.xml文件將用於建立定義的bean,它會覆蓋在全局範圍中使用相同名稱定義的任何bean的定義。
  • <contextcomponent-scan ...>標籤將用於激活Spring MVC註釋掃描功能,容許使用@Controller@RequestMapping等註釋。
  • InternalResourceViewResolver將定義用於解析視圖名稱的規則。根據上面定義的規則,hello的邏輯視圖將委託給位於/WEB-INF/jsp/hello.jsp這個視圖來實現。

下一節將演示如何建立實際組件。即:控制器,模型和視圖。spa

定義控制器

DispatcherServlet將請求委派給控制器以執行特定於其的功能。 @Controller註釋指示特定類充當控制器的角色。@RequestMapping註釋用於將URL映射到整個類或特定處理程序方法。code

@Controller
@RequestMapping("/hello")
publicclass HelloController{

 @RequestMapping(method = RequestMethod.GET)component

public String printHello(ModelMap model){
 model.addAttribute("message","Hello Spring MVC Framework!");
return"hello";
}

 }

Java

@Controller註釋將類定義爲Spring MVC控制器。這裏@RequestMapping的第一個用法表示此控制器上的全部處理方法都與/hello路徑相關。下一個註釋@RequestMapping(method = RequestMethod.GET)用於聲明printHello()方法做爲控制器的默認服務方法來處理HTTP GET請求。能夠定義另外一個方法來處理同一URL的任何POST請求。

能夠以另外一種形式在上面的控制器中編寫,在@RequestMapping中添加其餘屬性,以下所示:

@Controller
publicclass HelloController{

 @RequestMapping(value ="/hello", method = RequestMethod.GET)

public String printHello(ModelMap model){
 model.addAttribute("message","Hello Spring MVC Framework!");
return"hello";
}

 }

value屬性指示處理程序方法映射到的URLmethod屬性定義處理HTTP GET請求的服務方法。關於以上定義的控制器,須要注意如下幾點:

相關文章
相關標籤/搜索