python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to replace typo3 deprecated Annotation @validate Boolean(is=true)?
I have to upgrade a Typo3 v9 project to Typo3 v10.
Annotations like they were before are deprecated. I know how to replace something like @validate NotEmpty with @TYPO3\CMS\Extbase\Annotation\Validat...

halliballi
Votes: 0
Answers: 1
Pass property to spring annotation from custom annotation
I have a custom annotation in spring, which levers the @Retryable annotation
@Target({ ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Retryable(value = MyClass.SubClassExc...
Colonel Mustard
Votes: 0
Answers: 1
Get passed Annotation Parameters from Field Annotations
I have two annotations, this class one:
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Processor {
public String description() default "";
}
And also this...

Beigoma
Votes: 0
Answers: 1
Rust explicit type annotation vs integer literal suffix
As we know, there are two similar ways of explicit type hints in Rust:
let val: i16 = 777;
// and:
let val = 777i16;
My questions is: what are the benefits of both of them? (Let's only look at the ca...
Oleksandr Novik
Votes: 0
Answers: 1