File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
src/main/java/org/woehlke/java/simpleworklist Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2323@ Setter
2424public class AuditModel extends Object implements Serializable {
2525
26- private static final long serialVersionUID = 4399373914714726911L ;
26+ static final long serialVersionUID = 4399373914714726911L ;
2727
2828 @ Column (name ="uuid" , nullable = false )
2929 protected UUID uuid ;
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
7676 http
7777 .headers ((headers ) -> headers .disable () )
7878 .authorizeRequests ((authorizeRequests ) -> authorizeRequests
79- .antMatchers (
79+ .requestMatchers (
8080 simpleworklistProperties .getWebSecurity ().getAntPatternsPublic ()
8181 )
8282 .permitAll ()
Original file line number Diff line number Diff line change 1010
1111import jakarta .servlet .http .HttpServletRequest ;
1212
13- import static javax .servlet .RequestDispatcher .*;
13+
14+ import static jakarta .servlet .RequestDispatcher .*;
1415import static org .springframework .web .bind .annotation .RequestMethod .*;
1516
1617
Original file line number Diff line number Diff line change 3131import org .woehlke .java .simpleworklist .application .framework .AuditModel ;
3232import org .woehlke .java .simpleworklist .application .framework .ComparableById ;
3333
34- import static javax .persistence .TemporalType .*;
34+
35+ import static jakarta .persistence .TemporalType .DATE ;
3536import static org .hibernate .annotations .LazyToOneOption .PROXY ;
3637
3738
You can’t perform that action at this time.
0 commit comments