flywh
published on
included in
日常记录 spring注解开发 1625484436050 1625484468786 1625484497730 1625484545708 1625484578901 1625484600118 1625484641394 Ctrl+S保存一下 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 package com.wolf.bean; public class Person { private String name; private Integer age;
flywh
published on
included in
日常记录 SSH 1.加入Spring 1)加入jar包 2)配置web.xml 1 2 3 4 <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> 3)加入Spring配置文件 2.加入Hibernate 1