Spring-MVC给自定义的类时间类等赋值

创建项目:
在这里插入图片描述
导包:
在这里插入图片描述

HelloController.java类:

@Controller
public class HelloController {
@RequestMapping("fun1")
@ResponseBody
public void fun1(Integer id,String name){
	System.out.println(id+"--我是fun1--"+name);
}
/**
 * 接收数据的基本类型
 * @param id
 * @param name
 */
@RequestMapping("fun2")
@ResponseBody
public void fun2(@RequestParam(name="ids") Integer id,String name){
	System.out.println(id+"--我是fun2--"+name);
}
/**
 * 接收基本类型的参数
 * @param id
 * @param name
 */
@RequestMapping("fun3")
@ResponseBody
public void fun3(Integer id,String name){
	System.out.println(id+"--我是fun3--"+name);
}
/**
 * 接收基本类型的参数
 * @param id
 * @param name
 */
@RequestMapping("fun4")
@ResponseBody
public void fun4(@RequestParam(name="ids") Integer id,@RequestParam(name="name",
required=true)String name){
	System.out.println(id+"--我是fun4--"+name);
}

UserController.java类:

@Controller
public class UserController {
	/**
	 * user接收类
	 * @param user
	 */
	@RequestMapping("/add")
	@ResponseBody
	public void insertUser(User user){
		System.out.println(user+"---"+user.getBirth());
	}
	/**
	 * 数组接收
	 * @param id
	 * @param name
	 * @param favorites
	 */
	@RequestMapping("/add1")
	@ResponseBody
	public void insertUser1(Integer id,String name,String[]favorites){
		for (String f : favorites) {
			System.out.println(f);
		}
	}
	/**
	 * 集合接收
	 * @param id
	 * @param name
	 * @param favorites
	 */
	@RequestMapping("/add2")
	@ResponseBody
	public void insertUser2(Integer id,String name,List<String>favorites){
		for (String f : favorites) {
			System.out.println(f);
		}
	}
	/**
	 * 
	 * @param id
	 * @param name
	 * @param favorites
	 */
	@RequestMapping("/add3")
	@ResponseBody
	public void insertUser3(User user){
		System.out.println(user);
		System.out.println(user.getList());
	}
	/**
	 * 
	 * @param id
	 * @param name
	 * @param favorites
	 */
	@RequestMapping("/add4")
	@ResponseBody
	public void insertUser4(User user){
		String [] favorites=user.getFavorites();
		for (String f : favorites) {
			System.out.println(f);
		}
	}

StringToDateConvert.java类:(日期转换)

public class StringToDateConvert implements Converter<String, Date> {

	@Override
	public Date convert(String msg) {
		SimpleDateFormat adf=new SimpleDateFormat("yyyy-MM-dd");
		try {
		 	return adf.parse(msg);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return null;
	}

Book类:

public class Book {
	private String bookid;
	private String bookname;
	private String author;
	
	public String getBookid() {
		return bookid;
	}
	public void setBookid(String bookid) {
		this.bookid = bookid;
	}
	public String getBookname() {
		return bookname;
	}
	public void setBookname(String bookname) {
		this.bookname = bookname;
	}
	public String getAuthor() {
		return author;
	}
	public void setAuthor(String author) {
		this.author = author;
	}
	@Override
	public String toString() {
		return "Book [bookid=" + bookid + ", bookname=" + bookname + ", author=" + author + "]";
	}
	

User类:

private Integer id;
	
	private String name;
	
	private String[] favorites;
	
	private Data birth;
	
	private List<String> list;
	
	private String address;
	
	private Book book;

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String[] getFavorites() {
		return favorites;
	}

	public void setFavorites(String[] favorites) {
		this.favorites = favorites;
	}

	public Data getBirth() {
		return birth;
	}

	public void setBirth(Data birth) {
		this.birth = birth;
	}

	public List<String> getList() {
		return list;
	}

	public void setList(List<String> list) {
		this.list = list;
	}

	public String getAddress() {
		return address;
	}

	public void setAddress(String address) {
		this.address = address;
	}

	public Book getBook() {
		return book;
	}

	public void setBook(Book book) {
		this.book = book;
	}

	@Override
	public String toString() {
		return "User [id=" + id + ", name=" + name + ", favorites=" + Arrays.toString(favorites) + ", birth=" + birth
				+ ", list=" + list + ", address=" + address + ", book=" + book + "]";
	}
	

Spring-mvc.xml配置文件类:(这里也配置了视图解析器)如在输入是有报异常将视图解析器注释掉即可!

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<!-- 开启扫描 -->
<context:component-scan base-package="com.ytl.controller"></context:component-scan>
<!-- 开启注解 -->
<mvc:annotation-driven conversion-service="formattingConversionServiceFactoryBean"></mvc:annotation-driven>
<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 配置前缀 -->
<property name="prefix" value="/"/>
<!-- 配置后缀 -->
<property name="suffix" value=".jsp"></property>
</bean> 
<!-- 设置自定义的转换器 -->
<bean id="formattingConversionServiceFactoryBean" 
class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
<property name="converters">
<set>
<bean class="com.ytl.converter.StringToDateConvert"></bean>
</set>
</property>
</bean>
</beans>

Spring Boot 中的 `Expires` 被用于控制 HTTP 响应头中的缓存过期时间,如果一直赋值为 -1 或者没有显式设置,这通常意味着响应将不会被浏览器自动缓存。如果你发现这个问题,可能是以下几个原因: 1. **默认行为**:Spring Security 或 Spring MVC 的缓存配置默认可能会禁用自动设置 Expires 头。检查你的 `SecurityConfiguration` 或 `WebMvcConfigurerAdapter` 是否有相关配置。 ```java @Configuration @EnableWebMvc public class WebConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowCredentials(true) .maxAge(3600); // 设置默认的最大缓存时间 } } ``` 在这个例子中,我们设置了允许跨域请求,并设置了最大缓存时间为1小时。 2. **缓存策略**:如果你想要明确地控制每个响应的缓存策略,可以在返回值上使用 `@Cacheable`, `@ResponseCache`, 或 `@RestControllerAdvice` 注解,然后自定义缓存规则。 3. **缓存注解**:对于 `@GetMapping` 等公开接口,可以手动设置缓存属性,如 `@GetMapping(value = "/cacheable", cacheControl = "public, max-age=3600")`。 4. **全局配置**:在 `application.properties` 或 `application.yml` 文件中添加 `spring.mvc.cache.enabled=true` 开启缓存功能,同时也可以调整默认的缓存控制头。 如果你已经确认了上述设置还是出现问题,可能存在某个特定场景下缓存被特殊处理,或者需要进一步查看日志找出问题根源。你可以检查
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值