文件名称:jsonweb
文件大小:50KB
文件格式:ZIP
更新时间:2024-04-14 04:09:46
Java
一个简易的web容器 参照springboot的功能使用java实现如下操作 功能示例 1.配置文件 ``` #支持yml和properties两种格式 web: profiles: active: local #指定读取配置文件 port: 8080 #web服务器端口 ``` 2.读取配置,支持串口注入,支持基础数据类型和其包装类以及细分 @Value("string") private String string; @Value("integer:1") private int integer; @Value("strings:1,2") private String[] strings; @Value("integers:1,2") private Integer[] integers;
【文件预览】:
jsonweb-master
----README.md(3KB)
----pom.xml(5KB)
----src()
--------test()
--------main()