摘要:
int a,b,-c; float w,n 1、Math.sqrt(a*b); 此方法用于平方根 2、Math.round(w); 对浮点数进行四舍五入操作 3、Math.random(); 获取0~1之间的随机数 4、Math.pow(a); 平方数 5、Math.max(a,b); 两数中的最大 阅读全文
摘要:
1、@ComponentScan(value="指定包下的路径,比如com.joy下的所有类") 扫描包下有以下注解的类,加载到Spring容器中 service包@Service controller包@Controller dao包@Repository @Component,普通的类 可以添加 阅读全文
摘要:
@Configuration 使用此注解可以把一个类变成配置类,在配置类里面进行配置,配置类=配置文件,加在类上面,告诉Spring这是一个配置类 @Configuration public class MainConfig(){ } @Bean("指定id名") 使用此注解可以让一个方法注入到Sp 阅读全文