1.freemarker
spring的版本為4.3.2,freemarker版本為2.3.23(剛開始我用的freemarker版本為2.3.20,但一直報錯,看報錯的結果貌似和版本有關)
2.web.xml配置
<?xml version="1.0" encoding="utf-8"?>
charsetencoding
org.springframework.web.filter.characterencodingfilter
encoding
utf-8
forceencoding
true
/*springmvc
org.springframework.web.servlet.dispatcherservlet
contextconfiglocation
classpath:config/dispatcherservletconfig.xml 1/
2.dispatcherservletconfig.xml
<?xml version="1.0" encoding="utf-8"?>@datetimeformat ,@controller ,@valid ,@requestbody ,@responsebody等 -->
10zh_cn
yyyy-mm-dd hh:mm:ss
yyyy-mm-dd
#.##
3.tomcat的server.xml配置
在最下面的host標籤中加入這個
4.顯示結果
位址列是這樣的:
spring mvc基本配置
最近閒得蛋疼,晚上回家了解了解spring mvc 1.關於spring mvc的配置 spring mvc的入口是乙個servlet,在專案描述檔案web.xml中配置 mvcservlet org.springframework.web.servlet.dispatcherservlet 這裡u...
Spring MVC基本配置
spring mvc基本配置 the spring web model view controller mvc framework is designed around adispatcherservletthat dispatches requests to handlers,spring mvc...
Spring MVC基本配置
spring mvc 專案是web專案,首先需配置web.xml,配置dispatcherservlet,需要在配置是指定springmvc的配置檔案,在servlet下使用標籤指定,如果沒有指定,則預設在web inf下面有sringmvc的配置檔案,名字為servle名 servlet.xml。...