
spring-mvc
gmemai
这个作者很懒,什么都没留下…
展开
-
Spring MVC Internationalization (i18n) and Localization (i10n) Example
Internationalization is the process of designing a software application so that it can potentially be adapted to various languages and regions without engineering changes. Localization is the process o转载 2015-08-31 15:13:19 · 1202 阅读 · 0 评论 -
How to get web session on Spring AspectJ
I have a question for using Spring AspectJ.I want to create audit log when user do something and get user information from web session to create audit log. Can anyone provide examples of how to do this转载 2015-09-07 07:32:27 · 488 阅读 · 0 评论 -
How to get session information in Spring MVC 3
I am new to spring MVC and I am trying to get the session information in my controller classRight now I am using HttpSession objHttpSession = request.getSession(true);if I want to get session creati转载 2015-09-07 07:29:47 · 541 阅读 · 0 评论 -
Spring MVC textbox example
spring的便签带来了什么新功能? In Spring MVC, you can use <form:input /> tag to render a HTML textbox field. For example,<form:input path="userName" />It will renders following HTML code<input id="userName" name=转载 2015-09-29 11:36:35 · 326 阅读 · 0 评论 -
Spring MVC password example
In Spring MVC, you can use <form:password /> tag to render a HTML password field. For example,<form:password path="password" />It will renders following HTML code<input id="password" name="password" ty转载 2015-09-29 11:47:29 · 503 阅读 · 0 评论